diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-01-14 08:01:27 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-01-14 08:01:27 -0800 |
commit | 750a6cacf49dd57a4b4891ffdbd63191180273da (patch) | |
tree | 43d467def1e540b1b9902d5ef54f1de578c5aaf9 /t/test-terminal.perl | |
parent | Merge branch 'jn/xml-depends-on-asciidoc-conf' into maint (diff) | |
parent | run-command: encode signal death as a positive integer (diff) | |
download | tgif-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-x | t/test-terminal.perl | 2 |
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; } |