summaryrefslogtreecommitdiffstats
path: root/t/test-lib.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-06-09 22:54:25 +0200
committerJunio C Hamano <gitster@pobox.com>2014-06-09 23:18:55 +0200
commite1ecd9e3c8f800e3eab908df3e9fc4e166fca394 (patch)
tree74aba2d3cddeecdc030b84929528a298b51aa848 /t/test-lib.sh
parenttest: turn EXPENSIVE into a lazy prerequisite (diff)
downloadgit-e1ecd9e3c8f800e3eab908df3e9fc4e166fca394.tar.xz
git-e1ecd9e3c8f800e3eab908df3e9fc4e166fca394.zip
test: turn USR_BIN_TIME into a lazy prerequisite
Two test scripts (t3302 and t3419) had copy & paste code to set USR_BIN_TIME prerequisite. Use the test_lazy_prereq helper to define them in the common t/test-lib.sh. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/test-lib.sh')
-rw-r--r--t/test-lib.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh
index d70d05e1cb..884c57c30b 100644
--- a/t/test-lib.sh
+++ b/t/test-lib.sh
@@ -859,6 +859,10 @@ test_lazy_prereq EXPENSIVE '
test -n "$GIT_TEST_LONG"
'
+test_lazy_prereq USR_BIN_TIME '
+ test -x /usr/bin/time
+'
+
# When the tests are run as root, permission tests will report that
# things are writable when they shouldn't be.
test -w / || test_set_prereq SANITY