aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-08-27 11:31:45 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-08-27 11:32:58 +0200
commitcebe9a8f5d8bc5ff840a224ffe02ce0c91c06ec3 (patch)
treeaec2ae786f9e9df1cddbe5369054a6a58b5e1c73 /Makefile
parentadd DEVELOPMENT.md (diff)
downloadcimple-cebe9a8f5d8bc5ff840a224ffe02ce0c91c06ec3.tar.gz
cimple-cebe9a8f5d8bc5ff840a224ffe02ce0c91c06ec3.zip
make test/perf -> make flame_graphs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile22
1 files changed, 11 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index 79221d6..c2870dd 100644
--- a/Makefile
+++ b/Makefile
@@ -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