diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2016-09-06 19:05:03 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2016-09-06 19:05:03 (GMT) |
commit | 2c6720aacbf96c9ccae7cc3c3f89e88c55871966 (patch) | |
tree | ca38a17a5e27620ad62f61c89d5eb327981a2155 | |
parent | d9489260e4ced819d727dd144099a57ba2b78894 (diff) | |
parent | 9bcb5305db7226d06076aef5aada8c07fff1c41c (diff) | |
download | hdf5-2c6720aacbf96c9ccae7cc3c3f89e88c55871966.zip hdf5-2c6720aacbf96c9ccae7cc3c3f89e88c55871966.tar.gz hdf5-2c6720aacbf96c9ccae7cc3c3f89e88c55871966.tar.bz2 |
Merge pull request #17 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop
* commit '9bcb5305db7226d06076aef5aada8c07fff1c41c':
Add longer timeout to cache tests - test has consistently exceeded default timing.
-rw-r--r-- | test/CMakeTests.cmake | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/CMakeTests.cmake b/test/CMakeTests.cmake index f0860ac..ca890ba 100644 --- a/test/CMakeTests.cmake +++ b/test/CMakeTests.cmake @@ -1066,17 +1066,17 @@ if (HDF5_TEST_VFD) set_tests_properties (VFD-${vfdname}-flush1 PROPERTIES TIMEOUT 10) set_tests_properties (VFD-${vfdname}-flush2 PROPERTIES TIMEOUT 10) set_tests_properties (VFD-${vfdname}-istore PROPERTIES TIMEOUT 1800) -# if (NOT CYGWIN) -# set_tests_properties (VFD-${vfdname}-cache PROPERTIES TIMEOUT 1800) -# endif (NOT CYGWIN) + if (NOT CYGWIN) + set_tests_properties (VFD-${vfdname}-cache PROPERTIES TIMEOUT 1800) + endif (NOT CYGWIN) if (BUILD_SHARED_LIBS) set_tests_properties (VFD-${vfdname}-flush2-shared PROPERTIES DEPENDS VFD-${vfdname}-flush1-shared) set_tests_properties (VFD-${vfdname}-flush1-shared PROPERTIES TIMEOUT 10) set_tests_properties (VFD-${vfdname}-flush2-shared PROPERTIES TIMEOUT 10) set_tests_properties (VFD-${vfdname}-istore-shared PROPERTIES TIMEOUT 1800) -# if (NOT CYGWIN) -# set_tests_properties (VFD-${vfdname}-cache-shared PROPERTIES TIMEOUT 1800) -# endif (NOT CYGWIN) + if (NOT CYGWIN) + set_tests_properties (VFD-${vfdname}-cache-shared PROPERTIES TIMEOUT 1800) + endif (NOT CYGWIN) endif (BUILD_SHARED_LIBS) if (HDF5_TEST_FHEAP_VFD) add_test (NAME VFD-${vfdname}-fheap |