diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-01-07 22:25:21 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-01-07 22:25:21 +0200 |
commit | b4dc5fb3dc57f7fc7eaba39c5814b8bae9403b77 (patch) | |
tree | b63149ac5674084d73a34e31ffa66c0f0fb1b39e | |
parent | 0bfbda5996ca795c1b5d781c11be490035dc9c23 (diff) | |
download | egawk-b4dc5fb3dc57f7fc7eaba39c5814b8bae9403b77.tar.gz egawk-b4dc5fb3dc57f7fc7eaba39c5814b8bae9403b77.tar.bz2 egawk-b4dc5fb3dc57f7fc7eaba39c5814b8bae9403b77.zip |
And again, add the test files.
-rw-r--r-- | test/rsnullre.awk | 5 | ||||
-rw-r--r-- | test/rsnullre.in | 1 | ||||
-rw-r--r-- | test/rsnullre.ok | 3 |
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 +>> +<> |