aboutsummaryrefslogtreecommitdiff
path: root/unit-tests/test/script/parser/exit.test
diff options
context:
space:
mode:
Diffstat (limited to 'unit-tests/test/script/parser/exit.test')
-rw-r--r--unit-tests/test/script/parser/exit.test23
1 files changed, 23 insertions, 0 deletions
diff --git a/unit-tests/test/script/parser/exit.test b/unit-tests/test/script/parser/exit.test
new file mode 100644
index 0000000..263179b
--- /dev/null
+++ b/unit-tests/test/script/parser/exit.test
@@ -0,0 +1,23 @@
+: eq
+:
+$* <<EOI >>EOO
+cmd == 1
+EOI
+cmd == 1
+EOO
+
+: ne
+:
+$* <<EOI >>EOO
+cmd!=1
+EOI
+cmd != 1
+EOO
+
+: end
+:
+$* <<EOI 2>>EOE != 0
+cmd != 1 <"foo"
+EOI
+testscript:1:10: error: unexpected '<' after command exit status
+EOE