aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/directive/buildfile8
-rw-r--r--tests/directive/test.out1
-rw-r--r--tests/keyword/buildfile23
-rw-r--r--tests/keyword/test.out2
-rwxr-xr-xtests/keyword/test.sh (renamed from tests/directive/test.sh)0
5 files changed, 25 insertions, 9 deletions
diff --git a/tests/directive/buildfile b/tests/directive/buildfile
deleted file mode 100644
index 0f83717..0000000
--- a/tests/directive/buildfile
+++ /dev/null
@@ -1,8 +0,0 @@
-"print" = a
-'print' += b
-pr"int" += c
-print'' += d
-
-print $print
-
-./:
diff --git a/tests/directive/test.out b/tests/directive/test.out
deleted file mode 100644
index 8e13e46..0000000
--- a/tests/directive/test.out
+++ /dev/null
@@ -1 +0,0 @@
-a b c d
diff --git a/tests/keyword/buildfile b/tests/keyword/buildfile
new file mode 100644
index 0000000..cd91d33
--- /dev/null
+++ b/tests/keyword/buildfile
@@ -0,0 +1,23 @@
+# Quoting.
+#
+"print" = a
+'print' += b
+pr"int" += c
+print'' += d
+
+# Not = or +=.
+#
+print += e
+
+print $print
+
+# <name>(
+#
+print(test)
+
+# Separated.
+#
+define print: file
+print{foo}:
+
+./:
diff --git a/tests/keyword/test.out b/tests/keyword/test.out
new file mode 100644
index 0000000..729af10
--- /dev/null
+++ b/tests/keyword/test.out
@@ -0,0 +1,2 @@
+a b c d e
+test
diff --git a/tests/directive/test.sh b/tests/keyword/test.sh
index b898b3c..b898b3c 100755
--- a/tests/directive/test.sh
+++ b/tests/keyword/test.sh