blob: ae14449432453b5693e8735ef8059e003ed06292 [file] [edit]
#!/bin/sh
test_description='Tests ls-files worktree performance'
. ./perf-lib.sh
test_perf_large_repo
test_checkout_worktree
test_expect_success 'select a zero-prefix pathspec' '
tracked_file=$(git ls-files | sed -n 1p) &&
test -n "$tracked_file" &&
pathspec="?${tracked_file#?}" &&
test_export pathspec
'
test_perf 'ls-files --deleted with pathspec' '
git -c core.fsmonitor=false ls-files --deleted \
-- "$pathspec" >/dev/null
'
test_perf 'ls-files --deleted with all-matching pathspec' '
git -c core.fsmonitor=false ls-files --deleted -- "*" >/dev/null
'
test_perf 'ls-files --modified with pathspec' '
git -c core.fsmonitor=false ls-files --modified \
-- "$pathspec" >/dev/null
'
test_done