diff options
Diffstat (limited to 'src/grep/tests/r-dot')
-rwxr-xr-x | src/grep/tests/r-dot | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/grep/tests/r-dot b/src/grep/tests/r-dot new file mode 100755 index 0000000..29aedad --- /dev/null +++ b/src/grep/tests/r-dot @@ -0,0 +1,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 |