Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2017-05-13 18:59:46 +0300
committerJunio C Hamano <gitster@pobox.com>2017-05-16 05:11:21 +0300
commit1c002d0a9eb52f8e9cbecb8dce4edd86062df3b5 (patch)
treeadf286f00e4b29a396511a54091cd2245728cbf0 /t/perf/p0004-lazy-init-name-hash.sh
parentc9d4999155700651a37f4eb577cec1f4b5b8d6be (diff)
p0004: simplify calls of test-lazy-init-name-hash
The test library puts helpers into $PATH, so we can simply call them without specifying their location. The suffix $X is also not necessary because .exe files on Windows can be started without specifying their extension, and on other platforms it's empty anyway. Signed-off-by: Rene Scharfe <l.s.r@web.de> Acked-by: Jeff Hostetler <git@jeffhostetler.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/perf/p0004-lazy-init-name-hash.sh')
-rwxr-xr-xt/perf/p0004-lazy-init-name-hash.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/perf/p0004-lazy-init-name-hash.sh b/t/perf/p0004-lazy-init-name-hash.sh
index 5afa8c8df3..716c951553 100755
--- a/t/perf/p0004-lazy-init-name-hash.sh
+++ b/t/perf/p0004-lazy-init-name-hash.sh
@@ -7,13 +7,13 @@ test_perf_large_repo
test_checkout_worktree
test_expect_success 'verify both methods build the same hashmaps' '
- $GIT_BUILD_DIR/t/helper/test-lazy-init-name-hash$X --dump --single | sort >out.single &&
- $GIT_BUILD_DIR/t/helper/test-lazy-init-name-hash$X --dump --multi | sort >out.multi &&
+ test-lazy-init-name-hash --dump --single | sort >out.single &&
+ test-lazy-init-name-hash --dump --multi | sort >out.multi &&
test_cmp out.single out.multi
'
test_expect_success 'multithreaded should be faster' '
- $GIT_BUILD_DIR/t/helper/test-lazy-init-name-hash$X --perf >out.perf
+ test-lazy-init-name-hash --perf >out.perf
'
test_done