Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 5ad9dce7e691106fecde413de8cc321b937367a6 authored by Junio C Hamano on 08 September 2009, 00:20:02 UTC
GIT 1.6.5-rc0
Tip revision: 5ad9dce
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