Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: f01f1099f40f24fe6f7802185340a6fa3a3d4f35 authored by Junio C Hamano on 07 May 2009, 00:13:27 UTC
GIT 1.6.3
Tip revision: f01f109
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