diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-01-02 12:38:30 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-01-02 12:38:30 -0800 |
commit | a82027e9e6c477c01dac6d5af4a8756ff7122b67 (patch) | |
tree | 2dad5d5632bb099f2f56478769b465562ba8fc20 | |
parent | Merge branch 'js/mingw-reserved-filenames' (diff) | |
parent | t3008: find test-tool through path lookup (diff) | |
download | tgif-a82027e9e6c477c01dac6d5af4a8756ff7122b67.tar.xz |
Merge branch 'js/use-test-tool-on-path'
Test fix.
* js/use-test-tool-on-path:
t3008: find test-tool through path lookup
-rwxr-xr-x | t/t3008-ls-files-lazy-init-name-hash.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t3008-ls-files-lazy-init-name-hash.sh b/t/t3008-ls-files-lazy-init-name-hash.sh index 64f047332b..85f3704958 100755 --- a/t/t3008-ls-files-lazy-init-name-hash.sh +++ b/t/t3008-ls-files-lazy-init-name-hash.sh @@ -4,7 +4,7 @@ test_description='Test the lazy init name hash with various folder structures' . ./test-lib.sh -if test 1 -eq $($GIT_BUILD_DIR/t/helper/test-tool online-cpus) +if test 1 -eq $(test-tool online-cpus) then skip_all='skipping lazy-init tests, single cpu' test_done |