1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-01 18:16:08 +02:00
git/t/perf/Makefile
Jeff Hostetler 4f2009dce2 p7519: add trace logging during perf test
Add optional trace logging to allow us to better compare performance of
various fsmonitor providers and compare results with non-fsmonitor runs.

Currently, this includes Trace2 logging, but may be extended to include
other trace targets, such as GIT_TRACE_FSMONITOR if desired.

Using this logging helped me explain an odd behavior on MacOS where the
kernel was dropping events and causing the hook to Watchman to timeout.

Signed-off-by: Jeff Hostetler <jeffhost@microsoft.com>
Reviewed-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2021-02-16 17:14:34 -08:00

19 lines
276 B
Makefile

-include ../../config.mak
export GIT_TEST_OPTIONS
all: test-lint perf
perf: pre-clean
./run
pre-clean:
rm -rf test-results test-trace
clean:
rm -rf build "trash directory".* test-results test-trace
test-lint:
$(MAKE) -C .. test-lint
.PHONY: all perf pre-clean clean