blob: 61c09e3057d833c4aab80ee61c45fa895118bbda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/bash
. ./test-common.sh
cleanup 69
# ------------------------------- Test 69 ------------------------------------
# Test olddir with wildcard in the pattern
preptest test.log 69 1 0
rm -rf testdir adir bdir
mkdir adir
mkdir bdir
cp test.log adir
cp test.log bdir
$RLR test-config.69 --force -v
checkoutput <<EOF
adir/test.log 0
testdir/test.log.1 0 zero
EOF
rm -rf testdir adir
rm -rf testdir bdir
|