diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-27 11:31:45 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-27 11:32:58 +0200 |
commit | cebe9a8f5d8bc5ff840a224ffe02ce0c91c06ec3 (patch) | |
tree | aec2ae786f9e9df1cddbe5369054a6a58b5e1c73 /Makefile | |
parent | add DEVELOPMENT.md (diff) | |
download | cimple-cebe9a8f5d8bc5ff840a224ffe02ce0c91c06ec3.tar.gz cimple-cebe9a8f5d8bc5ff840a224ffe02ce0c91c06ec3.zip |
make test/perf -> make flame_graphs
Diffstat (limited to '')
-rw-r--r-- | Makefile | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -77,14 +77,6 @@ test/sanity: ctest --test-dir '$(call escape,$(cmake_dir))' \ --verbose --tests-regex python_tests_sanity -.PHONY: test/valgrind -test/valgrind: - @echo ----------------------------------------------------------------- - @echo Running sanity tests w/ Valgrind - @echo ----------------------------------------------------------------- - ctest --test-dir '$(call escape,$(cmake_dir))' \ - --verbose --tests-regex python_tests_valgrind - .PHONY: test/stress test/stress: @echo ----------------------------------------------------------------- @@ -93,13 +85,21 @@ test/stress: ctest --test-dir '$(call escape,$(cmake_dir))' \ --verbose --tests-regex python_tests_stress -.PHONY: test/perf -test/perf: +.PHONY: test/valgrind +test/valgrind: + @echo ----------------------------------------------------------------- + @echo Running sanity tests w/ Valgrind + @echo ----------------------------------------------------------------- + ctest --test-dir '$(call escape,$(cmake_dir))' \ + --verbose --tests-regex python_tests_valgrind + +.PHONY: flame_graphs +flame_graphs: @echo ----------------------------------------------------------------- @echo Collecting profiling data @echo ----------------------------------------------------------------- ctest --test-dir '$(call escape,$(cmake_dir))' \ - --verbose --tests-regex python_tests_perf + --verbose --tests-regex python_tests_flame_graphs .PHONY: test/docker test/docker: test/sanity |