We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb1976f commit 0180d26Copy full SHA for 0180d26
helper.mk
@@ -102,6 +102,9 @@ endif
102
103
run_file?=${build_dir}/applications/zpc/zpc
104
105
+# Can be overloaded from env: ./helper.mk ctest="ctest -V -R"
106
+ctest?=ctest
107
+
108
help: ./helper.mk
109
@echo "# ${project}: ${url}"
110
@echo "#"
@@ -247,7 +250,7 @@ ${build_dir}: ${build_dir}/CMakeCache.txt
247
250
file -E "$<"
248
251
249
252
test: ${build_dir}
- ctest --test-dir ${<}/${project_test_dir}
253
+ ${ctest} --test-dir ${<}/${project_test_dir}
254
255
check: test
256
0 commit comments