summaryrefslogtreecommitdiff
path: root/tests/util/awk/d_string1.awk
diff options
context:
space:
mode:
authorjmmv <jmmv@NetBSD.org>2009-02-13 05:19:51 +0000
committerjmmv <jmmv@NetBSD.org>2009-02-13 05:19:51 +0000
commitfbaeb3b2acf03780e097d16b8f071a92cd7a86c4 (patch)
tree6d96aab54f97b11968683f74124f1daff503e03d /tests/util/awk/d_string1.awk
parent79362ba3ea19f16bf294333ed4308d008eb85212 (diff)
Add the util tests developed as part of the atfify GSoC 2008 project.
Initial done work by Lukasz Strzygowsky and reorganization of files done by me.
Diffstat (limited to 'tests/util/awk/d_string1.awk')
-rw-r--r--tests/util/awk/d_string1.awk7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/util/awk/d_string1.awk b/tests/util/awk/d_string1.awk
new file mode 100644
index 00000000000..f0dee53d7a7
--- /dev/null
+++ b/tests/util/awk/d_string1.awk
@@ -0,0 +1,7 @@
+# $NetBSD: d_string1.awk,v 1.1 2009/02/13 05:19:51 jmmv Exp $
+
+BEGIN {
+ print "A\
+B";
+ print "CD"
+}