aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/build/script/parser+cleanup.test.testscript
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-05-14 14:18:50 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-05-17 17:48:37 +0300
commit96908ec43ed27d9f34da27b6a94a6db357465056 (patch)
tree7d61f1ccb6c4cef366b652f4446eee7e38eb6736 /libbuild2/build/script/parser+cleanup.test.testscript
parente5827facbfbfe90eae1b71c355a08bf61e2f6e1a (diff)
Add build script
Diffstat (limited to 'libbuild2/build/script/parser+cleanup.test.testscript')
-rw-r--r--libbuild2/build/script/parser+cleanup.test.testscript57
1 files changed, 57 insertions, 0 deletions
diff --git a/libbuild2/build/script/parser+cleanup.test.testscript b/libbuild2/build/script/parser+cleanup.test.testscript
new file mode 100644
index 0000000..9a5af3d
--- /dev/null
+++ b/libbuild2/build/script/parser+cleanup.test.testscript
@@ -0,0 +1,57 @@
+# file : libbuild2/build/script/parser+cleanup.test.testscript
+# license : MIT; see accompanying LICENSE file
+
+: always
+:
+$* <<EOI >>EOO
+cmd &file
+EOI
+cmd &file
+EOO
+
+: maybe
+:
+$* <<EOI >>EOO
+cmd &?file
+EOI
+cmd &?file
+EOO
+
+: never
+:
+$* <<EOI >>EOO
+cmd &!file
+EOI
+cmd &!file
+EOO
+
+: empty
+:
+$* <<EOI 2>>EOE != 0
+cmd &""
+EOI
+buildfile:11:6: error: empty cleanup path
+EOE
+
+: missed-before
+:
+{
+ : token
+ :
+ : Path missed before command next token
+ :
+ $* <<EOI 2>>EOE != 0
+ cmd & >file
+ EOI
+ buildfile:11:7: error: missing cleanup path
+ EOE
+
+ : end
+ : Test path missed before end of command
+ :
+ $* <<EOI 2>>EOE != 0
+ cmd &
+ EOI
+ buildfile:11:6: error: missing cleanup path
+ EOE
+}