tests: Don't assume that /tmp exists.
[gnulib.git] / tests / test-copy-acl-1.sh
blob0fe44a5efc9f209207a0c75705ddaabdf29a5ffc
1 #!/bin/sh
3 # Test copy-acl on the file system of /var/tmp, which usually is a local
4 # file system.
6 . "${srcdir=.}/init.sh"; path_prepend_ .
8 if test -d /var/tmp; then
9 TMPDIR=/var/tmp
10 else
11 TMPDIR=/tmp
13 test -d $TMPDIR || Exit 77
14 export TMPDIR
16 $BOURNE_SHELL "${srcdir}/test-copy-acl.sh"
18 Exit $?