Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: b6555d731e0828c356247a7836bdbd6e31c7a639 authored by Junio C Hamano on 11 May 2012, 18:25:28 UTC
Git 1.7.10.2
Tip revision: b6555d7
t0005-signals.sh
#!/bin/sh

test_description='signals work as we expect'
. ./test-lib.sh

cat >expect <<EOF
three
two
one
EOF

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 &&
	test_cmp expect actual
'

test_done
back to top