pty: Activate the signature wrapper of forkpty.
[gnulib.git] / tests / test-copy-file-1.sh
1 #!/bin/sh
2
3 # Test copy-file on the file system of /var/tmp, which usually is a local
4 # file system.
5
6 if test -d /var/tmp; then
7   TMPDIR=/var/tmp
8 else
9   TMPDIR=/tmp
10 fi
11 export TMPDIR
12
13 "${srcdir}/test-copy-file.sh"
14 ret1=$?
15 NO_STDERR_OUTPUT=1 "${srcdir}/test-copy-file.sh"
16 ret2=$?
17 case $ret1 in
18   77 ) exit $ret2 ;;
19   * ) exit $ret1 ;;
20 esac