summaryrefslogtreecommitdiff
path: root/tests/r-dot
blob: a1d5c0a5bdbd09cf3db1ca8a87e162fc535c83e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/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

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

Exit $fail