aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-misc/echo_write_error.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-misc/echo_write_error.tests')
-rwxr-xr-xshell/hush_test/hush-misc/echo_write_error.tests7
1 files changed, 7 insertions, 0 deletions
diff --git a/shell/hush_test/hush-misc/echo_write_error.tests b/shell/hush_test/hush-misc/echo_write_error.tests
new file mode 100755
index 000000000..0a40c9ff7
--- /dev/null
+++ b/shell/hush_test/hush-misc/echo_write_error.tests
@@ -0,0 +1,7 @@
+trap "" PIPE
+
+{
+sleep 1
+echo Cant write this - get EPIPE
+echo Ok: $? >&2
+} | { true; }