aboutsummaryrefslogtreecommitdiffstats
path: root/test/nlinstr.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/nlinstr.awk')
-rw-r--r--test/nlinstr.awk8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/nlinstr.awk b/test/nlinstr.awk
new file mode 100644
index 00000000..f403715c
--- /dev/null
+++ b/test/nlinstr.awk
@@ -0,0 +1,8 @@
+BEGIN { RS = "" }
+
+{
+ if (/^@/)
+ print "not ok"
+ else
+ print "ok"
+}