From 1c8e3eb9d7a646c93e706b48a4218284cfdef297 Mon Sep 17 00:00:00 2001 From: Chuck Atkins Date: Wed, 1 Dec 2021 12:27:49 -0500 Subject: [PATCH] Tinker with test timeouts --- testing/adios2/engine/bp/CMakeLists.txt | 3 +++ testing/adios2/engine/bp/operations/CMakeLists.txt | 3 +++ testing/adios2/interface/CMakeLists.txt | 3 +++ 3 files changed, 9 insertions(+) diff --git a/testing/adios2/engine/bp/CMakeLists.txt b/testing/adios2/engine/bp/CMakeLists.txt index 293bd28fa4..7240334f24 100644 --- a/testing/adios2/engine/bp/CMakeLists.txt +++ b/testing/adios2/engine/bp/CMakeLists.txt @@ -37,6 +37,9 @@ endmacro() add_subdirectory(operations) +# These tests should be *very* fast +set(CTEST_TEST_TIMEOUT 10) + bp_gtest_add_tests_helper(WriteReadADIOS2 MPI_ALLOW) bp_gtest_add_tests_helper(WriteReadADIOS2fstream MPI_ALLOW) bp3_bp4_gtest_add_tests_helper(WriteReadADIOS2stdio MPI_ALLOW) diff --git a/testing/adios2/engine/bp/operations/CMakeLists.txt b/testing/adios2/engine/bp/operations/CMakeLists.txt index c786c926fa..f876ab5737 100644 --- a/testing/adios2/engine/bp/operations/CMakeLists.txt +++ b/testing/adios2/engine/bp/operations/CMakeLists.txt @@ -3,6 +3,9 @@ # accompanying file Copyright.txt for details. #------------------------------------------------------------------------------# +# These tests are longer than others but should still be pretty fast +set(CTEST_TEST_TIMEOUT 60) + set(BP3_DIR ${CMAKE_CURRENT_BINARY_DIR}/bp3) set(BP4_DIR ${CMAKE_CURRENT_BINARY_DIR}/bp4) file(MAKE_DIRECTORY ${BP3_DIR}) diff --git a/testing/adios2/interface/CMakeLists.txt b/testing/adios2/interface/CMakeLists.txt index db718690ca..7d3f26579c 100644 --- a/testing/adios2/interface/CMakeLists.txt +++ b/testing/adios2/interface/CMakeLists.txt @@ -3,6 +3,9 @@ # accompanying file Copyright.txt for details. #------------------------------------------------------------------------------# +# These tests should be *very* fast +set(CTEST_TEST_TIMEOUT 10) + gtest_add_tests_helper(Interface MPI_ALLOW ADIOS Interface. "") gtest_add_tests_helper(Write MPI_ALLOW ADIOSInterface Interface. "") gtest_add_tests_helper(DefineVariable MPI_ALLOW ADIOS Interface. "")