diff options
Diffstat (limited to 't/Makefile')
-rw-r--r-- | t/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/t/Makefile b/t/Makefile index 66ceefefcc..6091211f10 100644 --- a/t/Makefile +++ b/t/Makefile @@ -73,6 +73,9 @@ gitweb-test: valgrind: $(MAKE) GIT_TEST_OPTS="$(GIT_TEST_OPTS) --valgrind" +perf: + $(MAKE) -C perf/ all + # Smoke testing targets -include ../GIT-VERSION-FILE uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo unknown') @@ -111,4 +114,4 @@ smoke_report: smoke http://smoke.git.nix.is/app/projects/process_add_report/1 \ | grep -v ^Redirecting -.PHONY: pre-clean $(T) aggregate-results clean valgrind smoke smoke_report +.PHONY: pre-clean $(T) aggregate-results clean valgrind perf |