summaryrefslogtreecommitdiffstats
path: root/testpar/CMakeTests.cmake
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2014-04-28 20:20:11 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2014-04-28 20:20:11 (GMT)
commit9fd8692663f5a5419dddd177d7590d36ca80362e (patch)
treeb55b451e0a70ab52fdc99d35fdee490c0ce4204e /testpar/CMakeTests.cmake
parent9711359755ab42a2318535122678f1b7fec10988 (diff)
downloadhdf5-9fd8692663f5a5419dddd177d7590d36ca80362e.zip
hdf5-9fd8692663f5a5419dddd177d7590d36ca80362e.tar.gz
hdf5-9fd8692663f5a5419dddd177d7590d36ca80362e.tar.bz2
[svn-r25128] HDFFV-8172: Add tests properties that indicate it will fail and to depend on PASSED in the output.
Diffstat (limited to 'testpar/CMakeTests.cmake')
-rw-r--r--testpar/CMakeTests.cmake4
1 files changed, 3 insertions, 1 deletions
diff --git a/testpar/CMakeTests.cmake b/testpar/CMakeTests.cmake
index 8165eff..3c69ccf 100644
--- a/testpar/CMakeTests.cmake
+++ b/testpar/CMakeTests.cmake
@@ -11,7 +11,9 @@ foreach (testp ${H5P_TESTS})
add_test (NAME TEST_PAR_${testp} COMMAND ${MPIEXEC} ${MPIEXEC_PREFLAGS} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} ${MPIEXEC_POSTFLAGS} $<TARGET_FILE:${testp}>)
endforeach (testp ${H5P_TESTS})
-SET_TESTS_PROPERTIES(TEST_PAR_t_pflush2 PROPERTIES DEPENDS TEST_PAR_t_pflush1)
+set_tests_properties (TEST_PAR_t_pflush1 PROPERTIES WILL_FAIL "true")
+set_property (TEST TEST_PAR_t_pflush1 PROPERTY PASS_REGULAR_EXPRESSION "PASSED")
+set_tests_properties (TEST_PAR_t_pflush2 PROPERTIES DEPENDS TEST_PAR_t_pflush1)
if (HDF5_TEST_VFD)