Revision a4c628d71d43a00acbf42ff5704d9f812babc39d authored by Junio C Hamano on 22 December 2011, 19:27:27 UTC, committed by Junio C Hamano on 22 December 2011, 19:27:27 UTC
* jk/doc-fsck:
  docs: brush up obsolete bits of git-fsck manpage

Conflicts:
	Documentation/git-fsck.txt
2 parent s f35ccd9 + 2830308
Raw File
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