git-commit-vandalism/t/perf/Makefile
Nipunn Koorapati ed5a24573d perf lint: add make test-lint to perf tests
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>
2020-10-20 12:52:23 -07:00

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