revision: new rev^-n shorthand for rev^n..rev
[gitweb.git] / t / t0005-signals.sh
index 95f8c05eb43b018439543f0c54cb5d90c18b8a4f..46042f1f1338f628d5256f0e932a4037e98b34ab 100755 (executable)
@@ -42,12 +42,12 @@ test_expect_success 'create blob' '
 
 test_expect_success !MINGW 'a constipated git dies with SIGPIPE' '
        OUT=$( ((large_git; echo $? 1>&3) | :) 3>&1 ) &&
-       test "$OUT" -eq 141
+       test_match_signal 13 "$OUT"
 '
 
 test_expect_success !MINGW 'a constipated git dies with SIGPIPE even if parent ignores it' '
        OUT=$( ((trap "" PIPE; large_git; echo $? 1>&3) | :) 3>&1 ) &&
-       test "$OUT" -eq 141
+       test_match_signal 13 "$OUT"
 '
 
 test_done