mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
686554bff6
Various glibc build / install / test code has C locale settings that are redundant with LC_ALL=C. LC_ALL takes precedence over LANG, so anywhere that sets LC_ALL=C (explicitly, or through it being in the default environment for running tests) does not need to set LANG=C. LC_ALL=C also takes precedence over LANGUAGE, since 2001-01-02 Ulrich Drepper <drepper@redhat.com> * intl/dcigettext.c (guess_category_value): Rewrite so that LANGUAGE value is ignored if the selected locale is the C locale. * intl/tst-gettext.c: Set locale for above change. * intl/tst-translit.c: Likewise. and so settings of LANGUAGE=C are also redundant when LC_ALL=C is set. One test also had LC_ALL=C in its -ENV setting, although it's part of the default environment used for tests. This patch removes the redundant settings. It removes a suggestion in install.texi of setting LANGUAGE=C LC_ALL=C for "make install"; the Makefile.in target "install" already sets LC_ALL_C so there's no need for the user to set it (and nor should there be any need for the user to set it). If some build machine tool used by "make install" uses a version of libintl predating that 2001 change, and the user has LANGUAGE set, the removal of LANGUAGE=C from the Makefile.in "install" rule could in principle affect the user's installation. However, I don't think we need to be concerned about pre-2001 build tools. Tested x86_64. * Makefile (install): Don't set LANGUAGE. * Makefile.in (install): Likewise. * assert/Makefile (test-assert-ENV): Remove variable. (test-assert-perr-ENV): Likewise. * elf/Makefile (neededtest4-ENV): Likewise. * iconvdata/Makefile ($(inst_gconvdir)/gconv-modules) [$(cross-compiling) = no]: Don't set LANGUAGE. * io/ftwtest-sh (LANG): Remove variable. * libio/Makefile (tst-widetext-ENV): Likewise. * manual/install.texi (Running make install): Don't refer to environment settings for make install. * INSTALL: Regenerated. * nptl/tst-tls6.sh: Don't set LANG. * posix/globtest.sh (LANG): Remove variable. * string/Makefile (tester-ENV): Likewise. (inl-tester-ENV): Likewise. (noinl-tester-ENV): Likewise. * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules) [$(cross-compiling) = no]: Don't set LANGUAGE. * timezone/Makefile (build-testdata): Use $(built-program-cmd) without explicit environment settings. localedata/ChangeLog: * tst-fmon.sh: Don't set LANGUAGE. * tst-locale.sh: Likewise.
300 lines
13 KiB
Bash
300 lines
13 KiB
Bash
#! /bin/sh
|
|
# Test for nftw(3).
|
|
# Copyright (C) 1997-2014 Free Software Foundation, Inc.
|
|
# This file is part of the GNU C Library.
|
|
|
|
# The GNU C Library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
|
|
# The GNU C Library is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Lesser General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with the GNU C Library; if not, see
|
|
# <http://www.gnu.org/licenses/>.
|
|
|
|
set -e
|
|
|
|
# The common objpfx, used to find libraries and the dynamic loader.
|
|
objpfx=$1
|
|
|
|
# We expect one parameter which is the test program. This must understand
|
|
# a number options:
|
|
# --phys use the FTW_PHYS flag
|
|
# --chdir use the FTW_CHDIR and print the current directory
|
|
# in the callback
|
|
# --depth use the FTW_DEPTH flag
|
|
# --early-exit print file@2 item only and return non-zero from the
|
|
# callback when it is seen
|
|
testprogram=$2
|
|
|
|
# We cannot test this as root.
|
|
if test `id | sed "s/uid=\([0-9]*\).*/\1/"` = 0; then
|
|
exit 0
|
|
fi
|
|
|
|
# Since we use `sort' we must make sure to use the same locale everywhere.
|
|
LC_ALL=C
|
|
export LC_ALL
|
|
|
|
# First create our scenario:
|
|
tmp=${objpfx}io
|
|
tmpdir=$tmp/ftwtest.d
|
|
|
|
trap 'chmod -fR a+x $tmpdir; rm -fr $tmpdir $testout' 1 2 3 15
|
|
|
|
if test -d $tmpdir; then
|
|
chmod -fR a+x $tmpdir
|
|
rm -fr $tmpdir
|
|
fi
|
|
mkdir $tmpdir
|
|
mkdir $tmpdir/foo
|
|
mkdir $tmpdir/bar
|
|
echo > $tmpdir/baz
|
|
mkdir $tmpdir/foo/lvl1
|
|
echo > $tmpdir/foo/lvl1/file@1
|
|
mkdir $tmpdir/foo/lvl1/lvl2
|
|
echo > $tmpdir/foo/lvl1/lvl2/file@2
|
|
mkdir $tmpdir/foo/lvl1/lvl2/lvl3
|
|
echo > $tmpdir/foo/lvl1/lvl2/lvl3/file@3
|
|
ln -s $tmpdir $tmpdir/foo/lvl1/lvl2/lvl3/link@3
|
|
ln -s $tmpdir/foo/lvl1/lvl2 $tmpdir/foo/lvl1/lvl2/link@2
|
|
ln -s $tmpdir/foo/lvl1/lvl2/lvl3/lvl4 $tmpdir/foo/lvl1/link@1
|
|
echo > $tmpdir/bar/xo
|
|
chmod a-x,a+r $tmpdir/bar
|
|
|
|
testout=$tmp/ftwtest-tmp.out
|
|
|
|
$testprogram $tmpdir |
|
|
sort > $testout
|
|
|
|
cat <<EOF | cmp $testout - || exit 1
|
|
base = "$tmp/", file = "ftwtest.d", flag = FTW_D, level = 0
|
|
base = "$tmp/ftwtest.d/", file = "bar", flag = FTW_D, level = 1
|
|
base = "$tmp/ftwtest.d/", file = "baz", flag = FTW_F, level = 1
|
|
base = "$tmp/ftwtest.d/", file = "foo", flag = FTW_D, level = 1
|
|
base = "$tmp/ftwtest.d/bar/", file = "xo", flag = FTW_NS, level = 2
|
|
base = "$tmp/ftwtest.d/foo/", file = "lvl1", flag = FTW_D, level = 2
|
|
base = "$tmp/ftwtest.d/foo/lvl1/", file = "file@1", flag = FTW_F, level = 3
|
|
base = "$tmp/ftwtest.d/foo/lvl1/", file = "link@1", flag = FTW_SLN, level = 3
|
|
base = "$tmp/ftwtest.d/foo/lvl1/", file = "lvl2", flag = FTW_D, level = 3
|
|
base = "$tmp/ftwtest.d/foo/lvl1/lvl2/", file = "file@2", flag = FTW_F, level = 4
|
|
base = "$tmp/ftwtest.d/foo/lvl1/lvl2/", file = "lvl3", flag = FTW_D, level = 4
|
|
base = "$tmp/ftwtest.d/foo/lvl1/lvl2/lvl3/", file = "file@3", flag = FTW_F, level = 5
|
|
EOF
|
|
rm $testout
|
|
|
|
$testprogram --depth $tmpdir |
|
|
sort > $testout
|
|
|
|
cat <<EOF | cmp $testout - || exit 1
|
|
base = "$tmp/", file = "ftwtest.d", flag = FTW_DP, level = 0
|
|
base = "$tmp/ftwtest.d/", file = "bar", flag = FTW_DP, level = 1
|
|
base = "$tmp/ftwtest.d/", file = "baz", flag = FTW_F, level = 1
|
|
base = "$tmp/ftwtest.d/", file = "foo", flag = FTW_DP, level = 1
|
|
base = "$tmp/ftwtest.d/bar/", file = "xo", flag = FTW_NS, level = 2
|
|
base = "$tmp/ftwtest.d/foo/", file = "lvl1", flag = FTW_DP, level = 2
|
|
base = "$tmp/ftwtest.d/foo/lvl1/", file = "file@1", flag = FTW_F, level = 3
|
|
base = "$tmp/ftwtest.d/foo/lvl1/", file = "link@1", flag = FTW_SLN, level = 3
|
|
base = "$tmp/ftwtest.d/foo/lvl1/", file = "lvl2", flag = FTW_DP, level = 3
|
|
base = "$tmp/ftwtest.d/foo/lvl1/lvl2/", file = "file@2", flag = FTW_F, level = 4
|
|
base = "$tmp/ftwtest.d/foo/lvl1/lvl2/", file = "lvl3", flag = FTW_DP, level = 4
|
|
base = "$tmp/ftwtest.d/foo/lvl1/lvl2/lvl3/", file = "file@3", flag = FTW_F, level = 5
|
|
EOF
|
|
rm $testout
|
|
|
|
$testprogram --phys $tmpdir |
|
|
sort > $testout
|
|
|
|
cat <<EOF | cmp $testout - || exit 1
|
|
base = "$tmp/", file = "ftwtest.d", flag = FTW_D, level = 0
|
|
base = "$tmp/ftwtest.d/", file = "bar", flag = FTW_D, level = 1
|
|
base = "$tmp/ftwtest.d/", file = "baz", flag = FTW_F, level = 1
|
|
base = "$tmp/ftwtest.d/", file = "foo", flag = FTW_D, level = 1
|
|
base = "$tmp/ftwtest.d/bar/", file = "xo", flag = FTW_NS, level = 2
|
|
base = "$tmp/ftwtest.d/foo/", file = "lvl1", flag = FTW_D, level = 2
|
|
base = "$tmp/ftwtest.d/foo/lvl1/", file = "file@1", flag = FTW_F, level = 3
|
|
base = "$tmp/ftwtest.d/foo/lvl1/", file = "link@1", flag = FTW_SL, level = 3
|
|
base = "$tmp/ftwtest.d/foo/lvl1/", file = "lvl2", flag = FTW_D, level = 3
|
|
base = "$tmp/ftwtest.d/foo/lvl1/lvl2/", file = "file@2", flag = FTW_F, level = 4
|
|
base = "$tmp/ftwtest.d/foo/lvl1/lvl2/", file = "link@2", flag = FTW_SL, level = 4
|
|
base = "$tmp/ftwtest.d/foo/lvl1/lvl2/", file = "lvl3", flag = FTW_D, level = 4
|
|
base = "$tmp/ftwtest.d/foo/lvl1/lvl2/lvl3/", file = "file@3", flag = FTW_F, level = 5
|
|
base = "$tmp/ftwtest.d/foo/lvl1/lvl2/lvl3/", file = "link@3", flag = FTW_SL, level = 5
|
|
EOF
|
|
rm $testout
|
|
|
|
# For the next test everything must be readable.
|
|
chmod -fR a+x $tmpdir
|
|
|
|
$testprogram --chdir $tmpdir |
|
|
sort > $testout
|
|
|
|
# perhaps $tmp involves some symlinks...
|
|
tmpreal=`cd $tmp; /bin/pwd 2>/dev/null || /usr/bin/pwd`
|
|
|
|
cat <<EOF | cmp $testout - || exit 1
|
|
base = "$tmp/", file = "ftwtest.d", flag = FTW_D, cwd = $tmpreal, level = 0
|
|
base = "$tmp/ftwtest.d/", file = "bar", flag = FTW_D, cwd = $tmpreal/ftwtest.d, level = 1
|
|
base = "$tmp/ftwtest.d/", file = "baz", flag = FTW_F, cwd = $tmpreal/ftwtest.d, level = 1
|
|
base = "$tmp/ftwtest.d/", file = "foo", flag = FTW_D, cwd = $tmpreal/ftwtest.d, level = 1
|
|
base = "$tmp/ftwtest.d/bar/", file = "xo", flag = FTW_F, cwd = $tmpreal/ftwtest.d/bar, level = 2
|
|
base = "$tmp/ftwtest.d/foo/", file = "lvl1", flag = FTW_D, cwd = $tmpreal/ftwtest.d/foo, level = 2
|
|
base = "$tmp/ftwtest.d/foo/lvl1/", file = "file@1", flag = FTW_F, cwd = $tmpreal/ftwtest.d/foo/lvl1, level = 3
|
|
base = "$tmp/ftwtest.d/foo/lvl1/", file = "link@1", flag = FTW_SLN, cwd = $tmpreal/ftwtest.d/foo/lvl1, level = 3
|
|
base = "$tmp/ftwtest.d/foo/lvl1/", file = "lvl2", flag = FTW_D, cwd = $tmpreal/ftwtest.d/foo/lvl1, level = 3
|
|
base = "$tmp/ftwtest.d/foo/lvl1/lvl2/", file = "file@2", flag = FTW_F, cwd = $tmpreal/ftwtest.d/foo/lvl1/lvl2, level = 4
|
|
base = "$tmp/ftwtest.d/foo/lvl1/lvl2/", file = "lvl3", flag = FTW_D, cwd = $tmpreal/ftwtest.d/foo/lvl1/lvl2, level = 4
|
|
base = "$tmp/ftwtest.d/foo/lvl1/lvl2/lvl3/", file = "file@3", flag = FTW_F, cwd = $tmpreal/ftwtest.d/foo/lvl1/lvl2/lvl3, level = 5
|
|
EOF
|
|
rm $testout
|
|
|
|
curwd=`/bin/pwd 2>/dev/null || /usr/bin/pwd`
|
|
cd "$tmp"
|
|
$testprogram --chdir ftwtest.d |
|
|
sort > $testout
|
|
cd "$curwd"
|
|
|
|
cat <<EOF | diff -u $testout - || exit 1
|
|
base = "", file = "ftwtest.d", flag = FTW_D, cwd = $tmpreal, level = 0
|
|
base = "ftwtest.d/", file = "bar", flag = FTW_D, cwd = $tmpreal/ftwtest.d, level = 1
|
|
base = "ftwtest.d/", file = "baz", flag = FTW_F, cwd = $tmpreal/ftwtest.d, level = 1
|
|
base = "ftwtest.d/", file = "foo", flag = FTW_D, cwd = $tmpreal/ftwtest.d, level = 1
|
|
base = "ftwtest.d/bar/", file = "xo", flag = FTW_F, cwd = $tmpreal/ftwtest.d/bar, level = 2
|
|
base = "ftwtest.d/foo/", file = "lvl1", flag = FTW_D, cwd = $tmpreal/ftwtest.d/foo, level = 2
|
|
base = "ftwtest.d/foo/lvl1/", file = "file@1", flag = FTW_F, cwd = $tmpreal/ftwtest.d/foo/lvl1, level = 3
|
|
base = "ftwtest.d/foo/lvl1/", file = "link@1", flag = FTW_SLN, cwd = $tmpreal/ftwtest.d/foo/lvl1, level = 3
|
|
base = "ftwtest.d/foo/lvl1/", file = "lvl2", flag = FTW_D, cwd = $tmpreal/ftwtest.d/foo/lvl1, level = 3
|
|
base = "ftwtest.d/foo/lvl1/lvl2/", file = "file@2", flag = FTW_F, cwd = $tmpreal/ftwtest.d/foo/lvl1/lvl2, level = 4
|
|
base = "ftwtest.d/foo/lvl1/lvl2/", file = "lvl3", flag = FTW_D, cwd = $tmpreal/ftwtest.d/foo/lvl1/lvl2, level = 4
|
|
base = "ftwtest.d/foo/lvl1/lvl2/lvl3/", file = "file@3", flag = FTW_F, cwd = $tmpreal/ftwtest.d/foo/lvl1/lvl2/lvl3, level = 5
|
|
EOF
|
|
rm $testout
|
|
|
|
curwd=`/bin/pwd 2>/dev/null || /usr/bin/pwd`
|
|
cd "$tmp"
|
|
$testprogram --chdir ftwtest.d/. |
|
|
sort > $testout
|
|
cd "$curwd"
|
|
|
|
cat <<EOF | diff -u $testout - || exit 1
|
|
base = "ftwtest.d/", file = ".", flag = FTW_D, cwd = $tmpreal/ftwtest.d, level = 0
|
|
base = "ftwtest.d/./", file = "bar", flag = FTW_D, cwd = $tmpreal/ftwtest.d, level = 1
|
|
base = "ftwtest.d/./", file = "baz", flag = FTW_F, cwd = $tmpreal/ftwtest.d, level = 1
|
|
base = "ftwtest.d/./", file = "foo", flag = FTW_D, cwd = $tmpreal/ftwtest.d, level = 1
|
|
base = "ftwtest.d/./bar/", file = "xo", flag = FTW_F, cwd = $tmpreal/ftwtest.d/bar, level = 2
|
|
base = "ftwtest.d/./foo/", file = "lvl1", flag = FTW_D, cwd = $tmpreal/ftwtest.d/foo, level = 2
|
|
base = "ftwtest.d/./foo/lvl1/", file = "file@1", flag = FTW_F, cwd = $tmpreal/ftwtest.d/foo/lvl1, level = 3
|
|
base = "ftwtest.d/./foo/lvl1/", file = "link@1", flag = FTW_SLN, cwd = $tmpreal/ftwtest.d/foo/lvl1, level = 3
|
|
base = "ftwtest.d/./foo/lvl1/", file = "lvl2", flag = FTW_D, cwd = $tmpreal/ftwtest.d/foo/lvl1, level = 3
|
|
base = "ftwtest.d/./foo/lvl1/lvl2/", file = "file@2", flag = FTW_F, cwd = $tmpreal/ftwtest.d/foo/lvl1/lvl2, level = 4
|
|
base = "ftwtest.d/./foo/lvl1/lvl2/", file = "lvl3", flag = FTW_D, cwd = $tmpreal/ftwtest.d/foo/lvl1/lvl2, level = 4
|
|
base = "ftwtest.d/./foo/lvl1/lvl2/lvl3/", file = "file@3", flag = FTW_F, cwd = $tmpreal/ftwtest.d/foo/lvl1/lvl2/lvl3, level = 5
|
|
EOF
|
|
rm $testout
|
|
|
|
curwd=`/bin/pwd 2>/dev/null || /usr/bin/pwd`
|
|
cd "$tmp"
|
|
$testprogram --chdir ftwtest.d/foo/lvl1/link@1 |
|
|
sort > $testout
|
|
cd "$curwd"
|
|
|
|
cat <<EOF | diff -u $testout - || exit 1
|
|
base = "ftwtest.d/foo/lvl1/", file = "link@1", flag = FTW_SLN, cwd = $tmpreal/ftwtest.d/foo/lvl1, level = 0
|
|
EOF
|
|
rm $testout
|
|
|
|
$testprogram --early-exit $tmpdir |
|
|
sort > $testout
|
|
|
|
cat <<EOF | cmp $testout - || exit 1
|
|
base = "$tmp/ftwtest.d/foo/lvl1/lvl2/", file = "file@2", flag = FTW_F, level = 4
|
|
succeeded
|
|
EOF
|
|
rm $testout
|
|
|
|
mkdir $tmpdir/foo/lvl1b
|
|
echo > $tmpdir/foo/lvl1b/file@1b
|
|
echo > $tmpdir/foo/lvl1b/file2@1b
|
|
echo > $tmpdir/foo/lvl1b/file3@1b
|
|
|
|
$testprogram --skip-subtree=lvl1 $tmpdir |
|
|
sort > $testout
|
|
|
|
cat <<EOF | diff -u $testout - || exit 1
|
|
base = "$tmp/", file = "ftwtest.d", flag = FTW_D, level = 0
|
|
base = "$tmp/ftwtest.d/", file = "bar", flag = FTW_D, level = 1
|
|
base = "$tmp/ftwtest.d/", file = "baz", flag = FTW_F, level = 1
|
|
base = "$tmp/ftwtest.d/", file = "foo", flag = FTW_D, level = 1
|
|
base = "$tmp/ftwtest.d/bar/", file = "xo", flag = FTW_F, level = 2
|
|
base = "$tmp/ftwtest.d/foo/", file = "lvl1", flag = FTW_D, level = 2
|
|
base = "$tmp/ftwtest.d/foo/", file = "lvl1b", flag = FTW_D, level = 2
|
|
base = "$tmp/ftwtest.d/foo/lvl1b/", file = "file2@1b", flag = FTW_F, level = 3
|
|
base = "$tmp/ftwtest.d/foo/lvl1b/", file = "file3@1b", flag = FTW_F, level = 3
|
|
base = "$tmp/ftwtest.d/foo/lvl1b/", file = "file@1b", flag = FTW_F, level = 3
|
|
EOF
|
|
rm $testout
|
|
|
|
$testprogram --skip-siblings=lvl1 $tmpdir |
|
|
sort > $testout
|
|
|
|
# The filesystem is not required to put lvl1 before lvl1b.
|
|
# If lvl1b comes after lvl1, it shouldn't be printed, while if it
|
|
# comes before, it should.
|
|
catcmd=cat
|
|
[ -n "`ls -U $tmpdir/foo/ | sed -n '/lvl1$/,${/lvl1b$/p;}'`" ] \
|
|
&& catcmd="grep -v lvl1b"
|
|
|
|
$catcmd <<EOF | diff -u $testout - || exit 1
|
|
base = "$tmp/", file = "ftwtest.d", flag = FTW_D, level = 0
|
|
base = "$tmp/ftwtest.d/", file = "bar", flag = FTW_D, level = 1
|
|
base = "$tmp/ftwtest.d/", file = "baz", flag = FTW_F, level = 1
|
|
base = "$tmp/ftwtest.d/", file = "foo", flag = FTW_D, level = 1
|
|
base = "$tmp/ftwtest.d/bar/", file = "xo", flag = FTW_F, level = 2
|
|
base = "$tmp/ftwtest.d/foo/", file = "lvl1", flag = FTW_D, level = 2
|
|
base = "$tmp/ftwtest.d/foo/", file = "lvl1b", flag = FTW_D, level = 2
|
|
base = "$tmp/ftwtest.d/foo/lvl1b/", file = "file2@1b", flag = FTW_F, level = 3
|
|
base = "$tmp/ftwtest.d/foo/lvl1b/", file = "file3@1b", flag = FTW_F, level = 3
|
|
base = "$tmp/ftwtest.d/foo/lvl1b/", file = "file@1b", flag = FTW_F, level = 3
|
|
EOF
|
|
rm $testout
|
|
|
|
$testprogram --skip-siblings=file@1b $tmpdir |
|
|
sort > $testout
|
|
|
|
# The filesystem is not required to put file2@1b and file3@1b after file@1b.
|
|
# If file[23]@1b come after file@1b, it shouldn't be printed, while if they
|
|
# come before, they should.
|
|
regexp=`echo $(ls -U $tmp/ftwtest.d/foo/lvl1b \
|
|
| sed -n '/file@1b$/,${/file[23]@1b$/p;}') | sed 's, ,|,'`
|
|
catcmd=cat
|
|
[ -n "$regexp" ] && catcmd="egrep -v $regexp"
|
|
|
|
$catcmd <<EOF | diff -u $testout - || exit 1
|
|
base = "$tmp/", file = "ftwtest.d", flag = FTW_D, level = 0
|
|
base = "$tmp/ftwtest.d/", file = "bar", flag = FTW_D, level = 1
|
|
base = "$tmp/ftwtest.d/", file = "baz", flag = FTW_F, level = 1
|
|
base = "$tmp/ftwtest.d/", file = "foo", flag = FTW_D, level = 1
|
|
base = "$tmp/ftwtest.d/bar/", file = "xo", flag = FTW_F, level = 2
|
|
base = "$tmp/ftwtest.d/foo/", file = "lvl1", flag = FTW_D, level = 2
|
|
base = "$tmp/ftwtest.d/foo/", file = "lvl1b", flag = FTW_D, level = 2
|
|
base = "$tmp/ftwtest.d/foo/lvl1/", file = "file@1", flag = FTW_F, level = 3
|
|
base = "$tmp/ftwtest.d/foo/lvl1/", file = "link@1", flag = FTW_SLN, level = 3
|
|
base = "$tmp/ftwtest.d/foo/lvl1/", file = "lvl2", flag = FTW_D, level = 3
|
|
base = "$tmp/ftwtest.d/foo/lvl1/lvl2/", file = "file@2", flag = FTW_F, level = 4
|
|
base = "$tmp/ftwtest.d/foo/lvl1/lvl2/", file = "lvl3", flag = FTW_D, level = 4
|
|
base = "$tmp/ftwtest.d/foo/lvl1/lvl2/lvl3/", file = "file@3", flag = FTW_F, level = 5
|
|
base = "$tmp/ftwtest.d/foo/lvl1b/", file = "file2@1b", flag = FTW_F, level = 3
|
|
base = "$tmp/ftwtest.d/foo/lvl1b/", file = "file3@1b", flag = FTW_F, level = 3
|
|
base = "$tmp/ftwtest.d/foo/lvl1b/", file = "file@1b", flag = FTW_F, level = 3
|
|
EOF
|
|
rm $testout
|
|
|
|
rm -fr $tmpdir
|
|
|
|
exit 0
|