12345678910111213141516171819202122232425 |
- #!/bin/bash
- . ./test-common.sh
- cleanup 13
- preptest test.log 13 1 0
- rm -rf testdir
- $RLR test-config.13 --force
- ls -l|grep testdir|grep "drwx------." 2>/dev/null >/dev/null
- if [ $? != 0 ]; then
- echo "testdir should have mode 2700, but it has:"
- ls -l|grep testdir
- exit 3
- fi
- checkoutput <<EOF
- test.log 0
- testdir/test.log.1 0 zero
- EOF
- rm -rf testdir
|