aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2010-07-11 23:47:29 -0700
committerJunio C Hamano <gitster@pobox.com>2010-07-11 23:47:29 -0700
commit609eb9f7ff2af45d52ea90c0678a442d46aaa163 (patch)
treeffc41d47800a65665625835215e9e82020954f1a /t
parente13f38a33ed181b937c85fd9adf6bce755f69d00 (diff)
parent5d1e34158a3023af48541bf1731d202849929a12 (diff)
downloadgit-609eb9f7ff2af45d52ea90c0678a442d46aaa163.tar.gz
git-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 09f855af3..93e58c00e 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 &&