Revision 99292c638a5c011ce453c904357185d9f6c7dd62 authored by Junio C Hamano on 03 December 2009, 21:54:11 UTC, committed by Junio C Hamano on 03 December 2009, 21:54:11 UTC
* ap/maint-merge-strategy-list-fix:
  builtin-merge.c: call exclude_cmds() correctly.
2 parent s 78b77c4 + ed87465
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
	  3) true ;; # Windows
	  *) false ;;
	esac &&
	test_cmp expect actual
'

test_done
back to top