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