Skip to content

Commit

Permalink
Amesos2: Disable NonContigGID test with KOKKOS_ENABLE_DEBUG
Browse files Browse the repository at this point in the history
Temporary fix to address issue #2471 by disabling failing tests when
KOKKOS_ENABLE_DEBUG=ON until failure is triaged and fixed.
  • Loading branch information
ndellingwood committed Mar 28, 2018
1 parent f72b5b9 commit cd71a1c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions packages/amesos2/example/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@

IF (${PACKAGE_NAME}_ENABLE_KLU2 AND NOT ${PROJECT_NAME}_ENABLE_DEBUG AND NOT KOKKOS_ENABLE_DEBUG)
TRIBITS_ADD_EXECUTABLE_AND_TEST(
SimpleSolveExampleNonContigMap
SOURCES SimpleSolveNonContigMap
ARGS
COMM serial mpi
NUM_MPI_PROCS 2
)
ENDIF()


TRIBITS_ADD_EXECUTABLE(
Expand Down
2 changes: 1 addition & 1 deletion packages/amesos2/test/solvers/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ TRIBITS_ADD_EXECUTABLE(

##### KLU2 Tests #####

IF (${PACKAGE_NAME}_ENABLE_KLU2 AND NOT ${PROJECT_NAME}_ENABLE_DEBUG)
IF (${PACKAGE_NAME}_ENABLE_KLU2 AND NOT ${PROJECT_NAME}_ENABLE_DEBUG AND NOT KOKKOS_ENABLE_DEBUG)
TRIBITS_ADD_EXECUTABLE_AND_TEST(
KLU2_UnitTests
# EXCLUDE_IF_NOT_TRUE ${PROJECT_NAME}_ENABLE_DEBUG
Expand Down

0 comments on commit cd71a1c

Please sign in to comment.