aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-misc/pipefail.right
diff options
context:
space:
mode:
Diffstat (limited to 'shell/ash_test/ash-misc/pipefail.right')
-rw-r--r--shell/ash_test/ash-misc/pipefail.right40
1 files changed, 40 insertions, 0 deletions
diff --git a/shell/ash_test/ash-misc/pipefail.right b/shell/ash_test/ash-misc/pipefail.right
new file mode 100644
index 000000000..5845d8939
--- /dev/null
+++ b/shell/ash_test/ash-misc/pipefail.right
@@ -0,0 +1,40 @@
1Default:
2true | true:
30
41
5true | false:
61
70
8false | true:
90
101
11exit 2 | exit 3 | exit 4:
124
130
14Pipefail on:
15true | true:
160
171
18true | false:
191
200
21false | true:
221
230
24exit 2 | exit 3 | exit 4:
254
260
27Pipefail off:
28true | true:
290
301
31true | false:
321
330
34false | true:
350
361
37exit 2 | exit 3 | exit 4:
384
390
40Done