summaryrefslogtreecommitdiff
path: root/tests/r-dot
blob: 29aedad6da3d385c38f562b96e8afee05b16c17e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
# Check that "grep -r PAT" reads ".".
. "${srcdir=.}/init.sh"; path_prepend_ ../src

mkdir dir || framework_failure_
echo aaa > dir/a || framework_failure_
echo bbb > dir/b || framework_failure_

echo a:aaa > exp || framework_failure_

(cd dir && grep -r aaa) > out || fail=1
compare exp out || fail=1

(cd dir && grep -r aaa < a) > out || fail=1
compare exp out || fail=1

(cd dir && grep -r aaa *) > out || fail=1
compare exp out || fail=1

Exit $fail