Skip to content

Commit

Permalink
Merge pull request #3726 from vicentebolea/fix-timeout-defsync-tests
Browse files Browse the repository at this point in the history
ci: increase windows timeout defsync and DataWrite
  • Loading branch information
vicentebolea authored Jul 29, 2023
2 parents cdd58fb + 2a6b5be commit 0783bdc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions scripts/ci/cmake/ci-win2019-vs2019-ompi.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ ADIOS2_USE_Fortran:BOOL=OFF
ADIOS2_USE_MPI:BOOL=ON
")

set(CTEST_TEST_TIMEOUT 500)
set(CTEST_CMAKE_GENERATOR "Visual Studio 16 2019")
set(CTEST_CMAKE_GENERATOR_PLATFORM "x64")
list(APPEND CTEST_UPDATE_NOTES_FILES "${CMAKE_CURRENT_LIST_FILE}")
Expand Down
1 change: 1 addition & 0 deletions scripts/ci/cmake/ci-win2019-vs2019-serial.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ ADIOS2_USE_Fortran:BOOL=OFF
ADIOS2_USE_MPI:BOOL=OFF
")

set(CTEST_TEST_TIMEOUT 500)
set(CTEST_CMAKE_GENERATOR "Visual Studio 16 2019")
set(CTEST_CMAKE_GENERATOR_PLATFORM "x64")
list(APPEND CTEST_UPDATE_NOTES_FILES "${CMAKE_CURRENT_LIST_FILE}")
Expand Down
6 changes: 6 additions & 0 deletions testing/adios2/engine/staging-common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -376,3 +376,9 @@ if(NOT MSVC AND ADIOS2_HAVE_HDF5 AND (NOT ADIOS2_HAVE_MPI OR HDF5_IS_PARALLEL))
add_common_test(${test} HDF5)
endforeach()
endif()

# Tests particularities
if (WIN32)
set_property(TEST Staging.1x1DefSync.BP5 PROPERTY TIMEOUT 500)
set_property(TEST Staging.1x1DataWrite.BP5 PROPERTY TIMEOUT 500)
endif()

0 comments on commit 0783bdc

Please sign in to comment.