Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 0a53e9ddeaddad63ad106860237bbf53411d11a7 authored by Junio C Hamano on 29 July 2009, 07:32:42 UTC
GIT 1.6.4
Tip revision: 0a53e9d
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
	  3) true ;; # Windows
	  *) false ;;
	esac &&
	test_cmp expect actual
'

test_done
back to top