From 6b74dab3c0ebe13390ca0e15825b6dd98a0f8240 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 27 Aug 2023 12:24:49 +0200 Subject: again, reorganize test targets --- Makefile | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 6c80198..184060c 100644 --- a/Makefile +++ b/Makefile @@ -55,31 +55,24 @@ release: build install: build cmake --install '$(call escape,$(cmake_dir))' -.PHONY: test/sanity -test/sanity: +.PHONY: test +test: @echo ----------------------------------------------------------------- - @echo Running sanity tests + @echo Running tests @echo ----------------------------------------------------------------- ctest --test-dir '$(call escape,$(cmake_dir))' \ - --verbose --tests-regex python_tests_sanity + --verbose --tests-regex python_tests_default -.PHONY: test/stress -test/stress: +# A subset of tests, excluding long-running stress tests. +.PHONY: test/sanity +test/sanity: @echo ----------------------------------------------------------------- - @echo Running stress tests + @echo Running sanity tests @echo ----------------------------------------------------------------- ctest --test-dir '$(call escape,$(cmake_dir))' \ - --verbose --tests-regex python_tests_stress - -# Run the basic "sanity" tests & the stress tests by default. -.PHONY: test -test: test/sanity test/stress - -# When building for a Docker image for a different platform, exclude stress -# tests: they simply take way too long. -.PHONY: test/docker -test/docker: test/sanity + --verbose --tests-regex python_tests_sanity +# Same, but run under Valgrind. .PHONY: test/valgrind test/valgrind: @echo ----------------------------------------------------------------- @@ -88,11 +81,16 @@ test/valgrind: ctest --test-dir '$(call escape,$(cmake_dir))' \ --verbose --tests-regex python_tests_valgrind +# When building a Docker image for a different platform, exclude stress tests: +# they simply take way too long. +.PHONY: test/docker +test/docker: test/sanity + +# Force a rebuild for a coverage report, since it depends on GCC debug data. .PHONY: coverage coverage: COMPILER := gcc coverage: CONFIGURATION := Debug coverage: COVERAGE := 1 -# Force a rebuild for a coverage report, since it depends on the GCC debug data. coverage: clean build test @echo ----------------------------------------------------------------- @echo Generating code coverage report -- cgit v1.2.3