spawn: Use special invocation for <spawn.h> on OS/2 kLIBC.
[gnulib.git] / tests / test-sigpipe.sh
blob58a19acf7c59e6b7525d9c7ccbc00509e77005b4
1 #!/bin/sh
3 tmpfiles=""
4 trap 'rm -fr $tmpfiles' 1 2 3 15
6 # Test signal's default behaviour.
7 tmpfiles="$tmpfiles t-sigpipeA.tmp"
8 ${CHECKER} ./test-sigpipe${EXEEXT} A 2> t-sigpipeA.tmp | head -1 > /dev/null
9 if test -s t-sigpipeA.tmp; then
10 LC_ALL=C tr -d '\r' < t-sigpipeA.tmp
11 rm -fr $tmpfiles; exit 1
14 # Test signal's ignored behaviour.
15 tmpfiles="$tmpfiles t-sigpipeB.tmp"
16 ${CHECKER} ./test-sigpipe${EXEEXT} B 2> t-sigpipeB.tmp | head -1 > /dev/null
17 if test -s t-sigpipeB.tmp; then
18 LC_ALL=C tr -d '\r' < t-sigpipeB.tmp
19 rm -fr $tmpfiles; exit 1
22 # Test signal's behaviour when a handler is installed.
23 tmpfiles="$tmpfiles t-sigpipeC.tmp"
24 ${CHECKER} ./test-sigpipe${EXEEXT} C 2> t-sigpipeC.tmp | head -1 > /dev/null
25 if test -s t-sigpipeC.tmp; then
26 LC_ALL=C tr -d '\r' < t-sigpipeC.tmp
27 rm -fr $tmpfiles; exit 1
30 rm -fr $tmpfiles
31 exit 0