diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2014-04-02 18:35:01 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2014-04-02 18:35:01 (GMT) |
commit | 98bbf4a36a2410fe0862c739370365a160053f17 (patch) | |
tree | c07dd05d13fe3729d677ffe82be9d2a662035467 /hl/examples/CMakeTests.cmake | |
parent | 5555f057ae4203b469cc22c6fc9bf886ff809343 (diff) | |
download | hdf5-98bbf4a36a2410fe0862c739370365a160053f17.zip hdf5-98bbf4a36a2410fe0862c739370365a160053f17.tar.gz hdf5-98bbf4a36a2410fe0862c739370365a160053f17.tar.bz2 |
[svn-r24948] Group tests by Common name
Remove WIN32 AND NOT CYGWIN if blocks - should be just WIN32
Tested: local linux CMake
Diffstat (limited to 'hl/examples/CMakeTests.cmake')
-rw-r--r-- | hl/examples/CMakeTests.cmake | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/hl/examples/CMakeTests.cmake b/hl/examples/CMakeTests.cmake index bc51183..8cf74d9 100644 --- a/hl/examples/CMakeTests.cmake +++ b/hl/examples/CMakeTests.cmake @@ -23,7 +23,7 @@ endforeach (h5_file ${HDF5_TEST_FILES}) # Remove any output file left over from previous test run add_test ( - NAME hl_ex-clear-objects + NAME HL_ex-clear-objects COMMAND ${CMAKE_COMMAND} -E remove ex_lite1.h5 @@ -47,14 +47,14 @@ endforeach (h5_file ${HDF5_TEST_FILES}) ex_ds1.h5 ) if (NOT "${last_test}" STREQUAL "") - set_tests_properties (hl_ex-clear-objects PROPERTIES DEPENDS ${last_test}) + set_tests_properties (HL_ex-clear-objects PROPERTIES DEPENDS ${last_test}) endif (NOT "${last_test}" STREQUAL "") - set (last_test "hl_ex-clear-objects") + set (last_test "HL_ex-clear-objects") foreach (example ${examples}) - add_test (NAME hl_ex_${example} COMMAND $<TARGET_FILE:hl_ex_${example}>) + add_test (NAME HL_ex_${example} COMMAND $<TARGET_FILE:hl_ex_${example}>) if (NOT "${last_test}" STREQUAL "") - set_tests_properties (hl_ex_${example} PROPERTIES DEPENDS ${last_test}) + set_tests_properties (HL_ex_${example} PROPERTIES DEPENDS ${last_test}) endif (NOT "${last_test}" STREQUAL "") - set (last_test "hl_ex_${example}") + set (last_test "HL_ex_${example}") endforeach (example ${examples}) |