From cd5b8e1f718424668a9054d5699ebfd53496593d Mon Sep 17 00:00:00 2001 From: Joe Frye Date: Tue, 25 Sep 2018 12:27:36 -0600 Subject: [PATCH] Disable slow running unit test on waterman cuda debug build (#2827) --- .../waterman/tweaks/CUDA-9.2-DEBUG-CUDA-POWER9-VOLTA70.cmake | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cmake/std/atdm/waterman/tweaks/CUDA-9.2-DEBUG-CUDA-POWER9-VOLTA70.cmake b/cmake/std/atdm/waterman/tweaks/CUDA-9.2-DEBUG-CUDA-POWER9-VOLTA70.cmake index fac875fb35ee..fcab6639fc0f 100644 --- a/cmake/std/atdm/waterman/tweaks/CUDA-9.2-DEBUG-CUDA-POWER9-VOLTA70.cmake +++ b/cmake/std/atdm/waterman/tweaks/CUDA-9.2-DEBUG-CUDA-POWER9-VOLTA70.cmake @@ -4,5 +4,10 @@ ATDM_SET_ENABLE(TeuchosNumerics_LAPACK_test_MPI_1_DISABLE ON) #disable from issue #2466 ATDM_SET_ENABLE(Belos_Tpetra_PseudoBlockCG_hb_test_MPI_4_DISABLE ON) +# Disable some unit tests that run too slow in this DEBUG build (#2827) +ATDM_SET_CACHE(KokkosKernels_sparse_serial_MPI_1_EXTRA_ARGS + "--gtest_filter=-serial.sparse_block_gauss_seidel_double_int_int_TestExecSpace:serial.sparse_block_gauss_seidel_double_int_size_t_TestExecSpace:serial.sparse_trsv_mv_double_int_int_LayoutLeft_TestExecSpace" + CACHE STRING ) + INCLUDE("${CMAKE_CURRENT_LIST_DIR}/CUDA_COMMON_TWEAKS.cmake") INCLUDE("${CMAKE_CURRENT_LIST_DIR}/ALL_COMMON_TWEAKS.cmake")