#! /bin/sh # 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 LANG=C export LANG # First create our scenario: tmp=`echo ${TMPDIR:-/tmp} | sed 's|\(.\)/*$|\1|'` tmpdir=$tmp/ftwtest.d [ -f ${objpfx}elf/ld.so ] && ldso=${objpfx}elf/ld.so 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=${TMPDIR:-/tmp}/ftwtest.out LD_LIBRARY_PATH=$objpfx $ldso $testprogram $tmpdir | sort > $testout cat < $testout cat < $testout cat < $testout # perhaps $tmp involves some symlinks... tmpreal=`cd $tmp; /bin/pwd 2>/dev/null || /usr/bin/pwd` cat < $testout cat <