aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-misc/pipefail.right
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-misc/pipefail.right')
-rw-r--r--shell/hush_test/hush-misc/pipefail.right40
1 files changed, 40 insertions, 0 deletions
diff --git a/shell/hush_test/hush-misc/pipefail.right b/shell/hush_test/hush-misc/pipefail.right
new file mode 100644
index 000000000..5845d8939
--- /dev/null
+++ b/shell/hush_test/hush-misc/pipefail.right
@@ -0,0 +1,40 @@
+Default:
+true | true:
+0
+1
+true | false:
+1
+0
+false | true:
+0
+1
+exit 2 | exit 3 | exit 4:
+4
+0
+Pipefail on:
+true | true:
+0
+1
+true | false:
+1
+0
+false | true:
+1
+0
+exit 2 | exit 3 | exit 4:
+4
+0
+Pipefail off:
+true | true:
+0
+1
+true | false:
+1
+0
+false | true:
+0
+1
+exit 2 | exit 3 | exit 4:
+4
+0
+Done