diff options
author | Jonathan Tan <jonathantanmy@google.com> | 2016-09-09 10:36:28 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-09-09 13:37:52 -0700 |
commit | 63b747ce1a4074a42b8f7fb5d6266489983ec38c (patch) | |
tree | 4264a193c12c20ed38cccb3cd8340eb3823608fd /t/test-lib.sh | |
parent | e0c1ceafc5bece92d35773a75fff59497e1d9bd5 (diff) | |
download | git-63b747ce1a4074a42b8f7fb5d6266489983ec38c.tar.gz |
tests: move test_lazy_prereq JGIT to test-lib.sh
This enables JGIT to be used as a prereq in invocations of
test_expect_success (and other functions) in other test scripts.
Signed-off-by: Jonathan Tan <jonathantanmy@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/test-lib.sh')
-rw-r--r-- | t/test-lib.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index d731d66e36..c9c10379f5 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -1072,6 +1072,10 @@ test_lazy_prereq NOT_ROOT ' test "$uid" != 0 ' +test_lazy_prereq JGIT ' + type jgit +' + # SANITY is about "can you correctly predict what the filesystem would # do by only looking at the permission bits of the files and # directories?" A typical example of !SANITY is running the test |