summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Jeff King <peff@peff.net>2013-06-01 13:24:41 -0400
committerLibravatar Junio C Hamano <gitster@pobox.com>2013-06-02 13:47:54 -0700
commite828908aa97ce0441b0c00a640b314c041fbd9e2 (patch)
tree1bbefc9f03cad4ec7c3cbc1acbc8165fa4e94b82
parentGit 1.8.2 (diff)
downloadtgif-e828908aa97ce0441b0c00a640b314c041fbd9e2.tar.xz
t0005: test git exit code from signal death
When a sub-process dies with a signal, we convert the exit code to the shell convention of 128+sig. Callers of git may be relying on this behavior, so let's make sure it does not break. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-xt/t0005-signals.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t0005-signals.sh b/t/t0005-signals.sh
index 93e58c00e8..ad9e6047f2 100755
--- a/t/t0005-signals.sh
+++ b/t/t0005-signals.sh
@@ -20,4 +20,11 @@ test_expect_success 'sigchain works' '
test_cmp expect actual
'
+test_expect_success 'signals are propagated using shell convention' '
+ # we use exec here to avoid any sub-shell interpretation
+ # of the exit code
+ git config alias.sigterm "!exec test-sigchain" &&
+ test_expect_code 143 git sigterm
+'
+
test_done