File tree Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ jobs:
129129
130130 - uses : actions/checkout@v4
131131
132- - run : ctest -Dexclude_label=python -S memcheck.cmake -VV
132+ - run : ctest -Dexclude_label="deflate| python" -S memcheck.cmake -VV
133133
134134
135135# issue with python loading writer.inc
Original file line number Diff line number Diff line change @@ -85,8 +85,8 @@ endif()
8585ctest_memcheck (
8686INCLUDE ${include}
8787INCLUDE_LABEL ${include_label}
88- EXCLUDE ${exclude}
89- EXCLUDE_LABEL ${exclude_label}
88+ EXCLUDE " ${exclude} "
89+ EXCLUDE_LABEL " ${exclude_label} "
9090RETURN_VALUE ret
9191CAPTURE_CMAKE_ERROR err
9292DEFECT_COUNT count
Original file line number Diff line number Diff line change @@ -74,10 +74,16 @@ set_property(TEST shape PROPERTY FIXTURES_SETUP h5shape)
7474set_property (TEST layout PROPERTY FIXTURES_REQUIRED test_files)
7575set_property (TEST layout PROPERTY REQUIRED_FILES ${CMAKE_CURRENT_BINARY_DIR} /test_write.h5)
7676
77- set_property (TEST deflate_write PROPERTY FIXTURES_SETUP deflate_files)
77+ set_tests_properties (deflate_write PROPERTIES
78+ FIXTURES_SETUP deflate_files
79+ LABELS deflate
80+ )
7881
79- set_property (TEST deflate_props deflate_read PROPERTY FIXTURES_REQUIRED deflate_files)
80- set_property (TEST deflate_props deflate_read PROPERTY REQUIRED_FILES ${CMAKE_CURRENT_BINARY_DIR} /deflate1.h5)
82+ set_tests_properties (deflate_props deflate_read PROPERTIES
83+ FIXTURES_REQUIRED deflate_files
84+ REQUIRED_FILES ${CMAKE_CURRENT_BINARY_DIR} /deflate1.h5
85+ LABELS deflate
86+ )
8187
8288if (h5fortran_COVERAGE)
8389setup_target_for_coverage_gcovr_html(
You can’t perform that action at this time.
0 commit comments