We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e82500 commit 12853e9Copy full SHA for 12853e9
2 files changed
.github/workflows/test.yml
@@ -443,4 +443,4 @@ jobs:
443
444
- name: Test
445
shell: bash
446
- run: ctest --test-dir out -C MinSizeRel --output-on-failure -VV -R '.*python'
+ run: ctest --test-dir out -C MinSizeRel --output-on-failure -VV -R '.*python$'
test/CMakeLists.txt
@@ -166,10 +166,7 @@ set(TEST_SRCIPT
166
cmake_path(GET EXECUTABLE FILENAME exefilename)
167
168
macro(run)
169
- execute_process(COMMAND \${ARGV} RESULT_VARIABLE CMD_RESULT)
170
- if(CMD_RESULT)
171
- message(FATAL_ERROR \"Error running \${ARGV}\")
172
- endif()
+ execute_process(COMMAND \${ARGV} COMMAND_ERROR_IS_FATAL ANY)
173
endmacro()
174
")
175
0 commit comments