summaryrefslogtreecommitdiff
path: root/tests/r-dot
diff options
context:
space:
mode:
Diffstat (limited to 'tests/r-dot')
-rw-r--r--tests/r-dot14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/r-dot b/tests/r-dot
new file mode 100644
index 00000000..73e593cf
--- /dev/null
+++ b/tests/r-dot
@@ -0,0 +1,14 @@
+#!/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
+
+Exit $fail