1#!/bin/sh
2
3# Test file-has-acl on the file system of /var/tmp, which usually is a local
4# file system.
5
6. "${srcdir=.}/init.sh"; path_prepend_ .
7
8if test -d /var/tmp; then
9  TMPDIR=/var/tmp
10else
11  TMPDIR=/tmp
12fi
13test -d $TMPDIR || Exit 77
14export TMPDIR
15
16$BOURNE_SHELL "${srcdir}/test-file-has-acl.sh"
17
18Exit $?
19