aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-parsing/and-or.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-parsing/and-or.tests')
-rwxr-xr-xshell/hush_test/hush-parsing/and-or.tests34
1 files changed, 0 insertions, 34 deletions
diff --git a/shell/hush_test/hush-parsing/and-or.tests b/shell/hush_test/hush-parsing/and-or.tests
deleted file mode 100755
index 485458abe..000000000
--- a/shell/hush_test/hush-parsing/and-or.tests
+++ /dev/null
@@ -1,34 +0,0 @@
-false || echo a1
-false && echo a2
-true || echo a3
-true && echo a4
-
-false || echo b1 || echo b2
-false || echo b3 && echo b4
-false && echo b5 || echo b6
-false && echo b7 && echo b8
-
-true || echo c1 || echo c2
-true || echo c3 && echo c4
-true && echo c5 || echo c6
-true && echo c7 && echo c8
-
-false || false || echo ff1
-false || false && echo ff2
-false && false || echo ff3
-false && false && echo ff4
-
-false || true || echo ft1
-false || true && echo ft2
-false && true || echo ft3
-false && true && echo ft4
-
-true || false || echo tf1
-true || false && echo tf2
-true && false || echo tf3
-true && false && echo tf4
-
-true || true || echo tt1
-true || true && echo tt2
-true && true || echo tt3
-true && true && echo tt4