aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-06-28 04:56:52 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-06-28 04:56:52 +0200
commitf3d7f7ab24861f04450b09b2adf30fa21d5feac5 (patch)
tree85f79df430825daeaa2c718650025de5eb1f8186 /Makefile
parentminor refactoring (diff)
downloadcimple-f3d7f7ab24861f04450b09b2adf30fa21d5feac5.tar.gz
cimple-f3d7f7ab24861f04450b09b2adf30fa21d5feac5.zip
Makefile: split tests into different recipes
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d770648..91806f0 100644
--- a/Makefile
+++ b/Makefile
@@ -61,4 +61,11 @@ install: build
.PHONY: test
test:
- cd -- '$(call escape,$(cmake_dir))' && ctest --verbose
+ cd -- '$(call escape,$(cmake_dir))' && ctest --verbose --exclude-regex python_tests_valgrind
+
+.PHONY: test/valgrind
+test/valgrind:
+ cd -- '$(call escape,$(cmake_dir))' && ctest --verbose --tests-regex python_tests_valgrind
+
+.PHONY: test/all
+test/all: test test/valgrind