blob: 683be6984f5ad6ff14e19a87128b6e5a1bb7e4a0 [file] [log] [blame]
Thomas Gummerer6df57622013-12-11 10:58:43 +01001#!/bin/sh
2
3test_description="Test diff --no-index performance"
4
5. ./perf-lib.sh
6
7test_perf_large_repo
8test_checkout_worktree
9
10file1=$(git ls-files | tail -n 2 | head -1)
11file2=$(git ls-files | tail -n 1 | head -1)
12
13test_expect_success "empty files, so they take no time to diff" "
14 echo >$file1 &&
15 echo >$file2
16"
17
18test_perf "diff --no-index" "
19 git diff --no-index $file1 $file2 >/dev/null
20"
21
22test_done