2013-08-20 05:49:44 +08:00
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
##############################################################################
|
|
|
|
### T E S T I N G ###
|
|
|
|
##############################################################################
|
|
|
|
##############################################################################
|
|
|
|
# Remove any output file left over from previous test run
|
2014-03-12 06:07:13 +08:00
|
|
|
add_test (
|
2014-04-03 02:35:01 +08:00
|
|
|
NAME CPP_ex-clear-objects
|
2013-08-20 05:49:44 +08:00
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
-E remove
|
|
|
|
Group.h5
|
|
|
|
SDS.h5
|
|
|
|
SDScompound.h5
|
|
|
|
SDSextendible.h5
|
|
|
|
Select.h5
|
|
|
|
)
|
2014-03-12 05:14:57 +08:00
|
|
|
if (NOT "${last_test}" STREQUAL "")
|
2014-04-03 02:35:01 +08:00
|
|
|
set_tests_properties (CPP_ex-clear-objects PROPERTIES DEPENDS ${last_test})
|
2014-03-12 05:14:57 +08:00
|
|
|
endif (NOT "${last_test}" STREQUAL "")
|
2014-04-03 02:35:01 +08:00
|
|
|
set (last_test "CPP_ex-clear-objects")
|
2013-08-20 05:49:44 +08:00
|
|
|
|
2014-03-12 05:14:57 +08:00
|
|
|
foreach (example ${examples})
|
2014-04-03 02:35:01 +08:00
|
|
|
add_test (NAME CPP_ex_${example} COMMAND $<TARGET_FILE:cpp_ex_${example}>)
|
2014-03-12 05:14:57 +08:00
|
|
|
if (NOT "${last_test}" STREQUAL "")
|
2014-04-03 02:35:01 +08:00
|
|
|
set_tests_properties (CPP_ex_${example} PROPERTIES DEPENDS ${last_test})
|
2014-03-12 05:14:57 +08:00
|
|
|
endif (NOT "${last_test}" STREQUAL "")
|
2014-04-03 02:35:01 +08:00
|
|
|
set (last_test "CPP_ex_${example}")
|
2014-03-12 05:14:57 +08:00
|
|
|
endforeach (example ${examples})
|
2013-10-01 01:49:05 +08:00
|
|
|
#the following dependicies are handled by the order of the files
|
2014-04-03 02:35:01 +08:00
|
|
|
# SET_TESTS_PROPERTIES(CPP_ex_readdata PROPERTIES DEPENDS CPP_ex_create)
|
|
|
|
# SET_TESTS_PROPERTIES(CPP_ex_chunks PROPERTIES DEPENDS CPP_ex_extend_ds)
|
2013-10-01 01:49:05 +08:00
|
|
|
|
2014-03-12 06:07:13 +08:00
|
|
|
add_test (
|
2014-04-03 02:35:01 +08:00
|
|
|
NAME CPP_ex_tutr-clear-objects
|
2013-10-01 01:49:05 +08:00
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
-E remove
|
2013-10-01 22:02:16 +08:00
|
|
|
h5tutr_cmprss.h5
|
|
|
|
h5tutr_dset.h5
|
|
|
|
h5tutr_extend.h5
|
|
|
|
h5tutr_group.h5
|
|
|
|
h5tutr_groups.h5
|
|
|
|
h5tutr_subset.h5
|
2013-10-01 01:49:05 +08:00
|
|
|
)
|
2014-03-12 05:14:57 +08:00
|
|
|
if (NOT "${last_test}" STREQUAL "")
|
2014-04-03 02:35:01 +08:00
|
|
|
set_tests_properties (CPP_ex_tutr-clear-objects PROPERTIES DEPENDS ${last_test})
|
2014-03-12 05:14:57 +08:00
|
|
|
endif (NOT "${last_test}" STREQUAL "")
|
2014-04-03 02:35:01 +08:00
|
|
|
set (last_test "CPP_ex_tutr-clear-objects")
|
2013-10-01 01:49:05 +08:00
|
|
|
|
2014-03-12 05:14:57 +08:00
|
|
|
foreach (example ${tutr_examples})
|
2014-04-03 02:35:01 +08:00
|
|
|
add_test (NAME CPP_ex_${example} COMMAND $<TARGET_FILE:cpp_ex_${example}>)
|
2014-03-12 05:14:57 +08:00
|
|
|
if (NOT "${last_test}" STREQUAL "")
|
2014-04-03 02:35:01 +08:00
|
|
|
set_tests_properties (CPP_ex_${example} PROPERTIES DEPENDS ${last_test})
|
2014-03-12 05:14:57 +08:00
|
|
|
endif (NOT "${last_test}" STREQUAL "")
|
2014-04-03 02:35:01 +08:00
|
|
|
set (last_test "CPP_ex_${example}")
|
2014-03-12 05:14:57 +08:00
|
|
|
endforeach (example ${tutr_examples})
|
2013-10-01 01:49:05 +08:00
|
|
|
#the following dependicies are handled by the order of the files
|
2014-04-03 02:35:01 +08:00
|
|
|
# SET_TESTS_PROPERTIES(CPP_ex_h5tutr_crtatt PROPERTIES DEPENDS CPP_ex_h5tutr_crtdat)
|
|
|
|
# SET_TESTS_PROPERTIES(CPP_ex_h5tutr_rdwt PROPERTIES DEPENDS CPP_ex_h5tutr_crtdat)
|
|
|
|
# SET_TESTS_PROPERTIES(CPP_ex_h5tutr_crtgrpd PROPERTIES DEPENDS CPP_ex_h5tutr_crtgrpar)
|
2013-10-01 01:49:05 +08:00
|
|
|
|