diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-03-01 18:30:55 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-03-01 18:30:55 (GMT) |
commit | f1ee4825f955773d561ab1ff3d79319e60f19046 (patch) | |
tree | 58dd84f4f8eec829302d884517cb2a51e4423f21 /testpar | |
parent | d29b78ba8f05d63e03d507c8f71ad47255efb804 (diff) | |
parent | 5a8ac1fb6c13e776bc17fa52c4cdf353c907907b (diff) | |
download | hdf5-f1ee4825f955773d561ab1ff3d79319e60f19046.zip hdf5-f1ee4825f955773d561ab1ff3d79319e60f19046.tar.gz hdf5-f1ee4825f955773d561ab1ff3d79319e60f19046.tar.bz2 |
Merge pull request #913 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop
* commit '5a8ac1fb6c13e776bc17fa52c4cdf353c907907b':
Fix test loop
Correct if-endif block
Remove option from list in doc
Remove t_cache_image test on Windows
Correct use of LIST var
Diffstat (limited to 'testpar')
-rw-r--r-- | testpar/CMakeTests.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testpar/CMakeTests.cmake b/testpar/CMakeTests.cmake index 87470f3..cd9acda 100644 --- a/testpar/CMakeTests.cmake +++ b/testpar/CMakeTests.cmake @@ -18,6 +18,10 @@ add_test (NAME TEST_PAR_testphdf5 COMMAND ${MPIEXEC_EXECUTABLE} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} ${MPIEXEC_PREFLAGS} $<TARGET_FILE:testphdf5> ${MPIEXEC_POSTFLAGS}) +if (WIN32) + # t_cache_imagee uses fork() and execve(), will not run on Windows + list (REMOVE_ITEM H5P_TESTS t_cache_image) +endif () foreach (testp ${H5P_TESTS}) add_test (NAME TEST_PAR_${testp} COMMAND ${MPIEXEC_EXECUTABLE} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} ${MPIEXEC_PREFLAGS} $<TARGET_FILE:${testp}> ${MPIEXEC_POSTFLAGS}) endforeach () |