summaryrefslogtreecommitdiff
path: root/tests/test-set-mode-acl-1.sh
blob: 73a4010619ecbd9161c69fe0fd58371e9ed823b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

# Test set-mode-acl on the file system of /var/tmp, which usually is a local
# file system.

. "${srcdir=.}/init.sh"; path_prepend_ .

if test -d /var/tmp; then
  TMPDIR=/var/tmp
else
  TMPDIR=/tmp
fi
test -d $TMPDIR || Exit 77
export TMPDIR

$BOURNE_SHELL "${srcdir}/test-set-mode-acl.sh"

Exit $?