diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-04-11 17:41:48 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-04-11 17:41:48 -0700 |
commit | e2af9e361b1d7452492baa073790b19292f9c038 (patch) | |
tree | e717ab3c92aecf5c4c06627daef025506d2c6335 /t/test-lib.sh | |
parent | 7ece7ee6079682bb2bb968b61a62fcb233df4005 (diff) | |
parent | 3a51467b94306e77c1b69b374bac33b6672bc177 (diff) | |
download | git-e2af9e361b1d7452492baa073790b19292f9c038.tar.gz |
Merge branch 'maint'
* maint:
Typo fix: replacing it's -> its
t: make PIPE a standard test prerequisite
archive: clarify explanation of --worktree-attributes
t/README: --immediate skips cleanup commands for failed tests
Diffstat (limited to 't/test-lib.sh')
-rw-r--r-- | t/test-lib.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index da57a2f45c..debd8b4751 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -735,6 +735,11 @@ test_i18ngrep () { fi } +test_lazy_prereq PIPE ' + # test whether the filesystem supports FIFOs + rm -f testfifo && mkfifo testfifo +' + test_lazy_prereq SYMLINKS ' # test whether the filesystem supports symbolic links ln -s x y && test -h y |