blob: 09f855af3e9cded903c828f3f946a0c2403ddcdf [file] [log] [blame]
Jeff King4a16d072009-01-22 01:02:35 -05001#!/bin/sh
2
3test_description='signals work as we expect'
4. ./test-lib.sh
5
6cat >expect <<EOF
7three
8two
9one
10EOF
11
12test_expect_success 'sigchain works' '
13 test-sigchain >actual
14 case "$?" in
Jeff King0ea80392009-01-30 03:21:01 -050015 143) true ;; # POSIX w/ SIGTERM=15
Jeff King4a16d072009-01-22 01:02:35 -050016 3) true ;; # Windows
17 *) false ;;
18 esac &&
19 test_cmp expect actual
20'
21
22test_done