pty: Activate the signature wrapper of forkpty.
[gnulib.git] / tests / test-dprintf-posix2.sh
1 #!/bin/sh
2
3 # Test against a memory leak.
4
5 (./test-dprintf-posix2${EXEEXT} 0
6  result=$?
7  if test $result != 77 && test $result != 78; then result=1; fi
8  exit $result
9 ) 2>/dev/null
10 malloc_result=$?
11 if test $malloc_result = 77; then
12   echo "Skipping test: no way to determine address space size"
13   exit 77
14 fi
15
16 ./test-dprintf-posix2${EXEEXT} 1 > /dev/null
17 result=$?
18 if test $result = 77; then
19   echo "Skipping test: no way to determine address space size"
20   exit 77
21 fi
22 if test $result != 0; then
23   exit 1
24 fi
25
26 if test $malloc_result = 78; then
27   echo "Skipping test: get_rusage_as() doesn't work"
28   exit 77
29 fi
30
31 exit 0