ed5a24573d
Perf tests have not been linted for some time. They've grown some seq instead of test_seq. This runs the existing lints on the perf tests as well. Signed-off-by: Nipunn Koorapati <nipunn@dropbox.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
19 lines
254 B
Makefile
19 lines
254 B
Makefile
-include ../../config.mak
|
|
export GIT_TEST_OPTIONS
|
|
|
|
all: test-lint perf
|
|
|
|
perf: pre-clean
|
|
./run
|
|
|
|
pre-clean:
|
|
rm -rf test-results
|
|
|
|
clean:
|
|
rm -rf build "trash directory".* test-results
|
|
|
|
test-lint:
|
|
$(MAKE) -C .. test-lint
|
|
|
|
.PHONY: all perf pre-clean clean
|