summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2010-07-11 23:47:29 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2010-07-11 23:47:29 -0700
commit609eb9f7ff2af45d52ea90c0678a442d46aaa163 (patch)
treeffc41d47800a65665625835215e9e82020954f1a /t
parentdiff.c: fix a graph output bug (diff)
parentDocumentation: Spelling fix in protocol-capabilities.txt (diff)
downloadtgif-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-xt/t0005-signals.sh1
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 &&