summaryrefslogtreecommitdiff
path: root/t/test-terminal.perl
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2013-01-14 08:01:27 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2013-01-14 08:01:27 -0800
commit750a6cacf49dd57a4b4891ffdbd63191180273da (patch)
tree43d467def1e540b1b9902d5ef54f1de578c5aaf9 /t/test-terminal.perl
parentMerge branch 'jn/xml-depends-on-asciidoc-conf' into maint (diff)
parentrun-command: encode signal death as a positive integer (diff)
downloadtgif-750a6cacf49dd57a4b4891ffdbd63191180273da.tar.xz
Merge branch 'jk/unify-exit-code-by-receiving-signal' into maint
* jk/unify-exit-code-by-receiving-signal: run-command: encode signal death as a positive integer
Diffstat (limited to 't/test-terminal.perl')
-rwxr-xr-xt/test-terminal.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/test-terminal.perl b/t/test-terminal.perl
index 10172aee18..1fb373f25b 100755
--- a/t/test-terminal.perl
+++ b/t/test-terminal.perl
@@ -31,7 +31,7 @@ sub finish_child {
} elsif ($? & 127) {
my $code = $? & 127;
warn "died of signal $code";
- return $code - 128;
+ return $code + 128;
} else {
return $? >> 8;
}