aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/rsnullre.awk5
-rw-r--r--test/rsnullre.in1
-rw-r--r--test/rsnullre.ok3
3 files changed, 9 insertions, 0 deletions
diff --git a/test/rsnullre.awk b/test/rsnullre.awk
new file mode 100644
index 00000000..72b156f2
--- /dev/null
+++ b/test/rsnullre.awk
@@ -0,0 +1,5 @@
+BEGIN {
+ RS = "()"
+}
+
+{ printf("<<%s>>\n", $0) ; printf("<%s>\n", RT) }
diff --git a/test/rsnullre.in b/test/rsnullre.in
new file mode 100644
index 00000000..257cc564
--- /dev/null
+++ b/test/rsnullre.in
@@ -0,0 +1 @@
+foo
diff --git a/test/rsnullre.ok b/test/rsnullre.ok
new file mode 100644
index 00000000..e8f34942
--- /dev/null
+++ b/test/rsnullre.ok
@@ -0,0 +1,3 @@
+<<foo
+>>
+<>