File tree 3 files changed +12
-6
lines changed
3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ jobs:
129
129
130
130
- uses : actions/checkout@v4
131
131
132
- - run : ctest -Dexclude_label=python -S memcheck.cmake -VV
132
+ - run : ctest -Dexclude_label="deflate| python" -S memcheck.cmake -VV
133
133
134
134
135
135
# issue with python loading writer.inc
Original file line number Diff line number Diff line change @@ -85,8 +85,8 @@ endif()
85
85
ctest_memcheck (
86
86
INCLUDE ${include}
87
87
INCLUDE_LABEL ${include_label}
88
- EXCLUDE ${exclude}
89
- EXCLUDE_LABEL ${exclude_label}
88
+ EXCLUDE " ${exclude} "
89
+ EXCLUDE_LABEL " ${exclude_label} "
90
90
RETURN_VALUE ret
91
91
CAPTURE_CMAKE_ERROR err
92
92
DEFECT_COUNT count
Original file line number Diff line number Diff line change @@ -74,10 +74,16 @@ set_property(TEST shape PROPERTY FIXTURES_SETUP h5shape)
74
74
set_property (TEST layout PROPERTY FIXTURES_REQUIRED test_files)
75
75
set_property (TEST layout PROPERTY REQUIRED_FILES ${CMAKE_CURRENT_BINARY_DIR} /test_write.h5)
76
76
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
+ )
78
81
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
+ )
81
87
82
88
if (h5fortran_COVERAGE)
83
89
setup_target_for_coverage_gcovr_html(
You can’t perform that action at this time.
0 commit comments