diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-07-11 23:47:29 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-07-11 23:47:29 -0700 |
commit | 609eb9f7ff2af45d52ea90c0678a442d46aaa163 (patch) | |
tree | ffc41d47800a65665625835215e9e82020954f1a /t | |
parent | diff.c: fix a graph output bug (diff) | |
parent | Documentation: Spelling fix in protocol-capabilities.txt (diff) | |
download | tgif-609eb9f7ff2af45d52ea90c0678a442d46aaa163.tar.xz |
Merge branch 'maint'
* maint:
Documentation: Spelling fix in protocol-capabilities.txt
checkout: accord documentation to what git does
t0005: work around strange $? in ksh when program terminated by a signal
Diffstat (limited to 't')
-rwxr-xr-x | t/t0005-signals.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/t0005-signals.sh b/t/t0005-signals.sh index 09f855af3e..93e58c00e8 100755 --- a/t/t0005-signals.sh +++ b/t/t0005-signals.sh @@ -13,6 +13,7 @@ test_expect_success 'sigchain works' ' test-sigchain >actual case "$?" in 143) true ;; # POSIX w/ SIGTERM=15 + 271) true ;; # ksh w/ SIGTERM=15 3) true ;; # Windows *) false ;; esac && |