Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: fc14b89a7e6899b8ac3b5751ec2d8c98203ea4c2 authored by Junio C Hamano on 28 November 2011, 22:07:13 UTC
Git 1.7.8-rc4
Tip revision: fc14b89
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