diff options
| author | Toon Claes <toon@iotcl.com> | 2025-08-05 11:33:57 +0200 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-08-28 16:44:58 -0700 |
| commit | 97d5301c54152d91a4e47449f759567f83140d4f (patch) | |
| tree | eb3cd965cb3501ab15d1116507d2e45ea2150f79 /t/perf/p8020-last-modified.sh | |
| parent | last-modified: new subcommand to show when files were last modified (diff) | |
| download | git-97d5301c54152d91a4e47449f759567f83140d4f.tar.gz git-97d5301c54152d91a4e47449f759567f83140d4f.zip | |
t/perf: add last-modified perf script
This just runs some simple last-modified commands. We already test
correctness in the regular suite, so this is just about finding
performance regressions from one version to another.
Based-on-patch-by: Jeff King <peff@peff.net>
Signed-off-by: Toon Claes <toon@iotcl.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
| -rwxr-xr-x | t/perf/p8020-last-modified.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/t/perf/p8020-last-modified.sh b/t/perf/p8020-last-modified.sh new file mode 100755 index 0000000000..cb1f98d3db --- /dev/null +++ b/t/perf/p8020-last-modified.sh @@ -0,0 +1,22 @@ +#!/bin/sh + +test_description='last-modified perf tests' +. ./perf-lib.sh + +test_perf_default_repo + +test_perf 'top-level last-modified' ' + git last-modified HEAD +' + +test_perf 'top-level recursive last-modified' ' + git last-modified -r HEAD +' + +test_perf 'subdir last-modified' ' + git ls-tree -d HEAD >subtrees && + path="$(head -n 1 subtrees | cut -f2)" && + git last-modified -r HEAD -- "$path" +' + +test_done |
