diff options
Diffstat (limited to 'third_party/git/t/perf/p4001-diff-no-index.sh')
-rwxr-xr-x | third_party/git/t/perf/p4001-diff-no-index.sh | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/third_party/git/t/perf/p4001-diff-no-index.sh b/third_party/git/t/perf/p4001-diff-no-index.sh deleted file mode 100755 index 683be6984f5a..000000000000 --- a/third_party/git/t/perf/p4001-diff-no-index.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh - -test_description="Test diff --no-index performance" - -. ./perf-lib.sh - -test_perf_large_repo -test_checkout_worktree - -file1=$(git ls-files | tail -n 2 | head -1) -file2=$(git ls-files | tail -n 1 | head -1) - -test_expect_success "empty files, so they take no time to diff" " - echo >$file1 && - echo >$file2 -" - -test_perf "diff --no-index" " - git diff --no-index $file1 $file2 >/dev/null -" - -test_done |