aboutsummaryrefslogtreecommitdiff
path: root/tests/test/script/runner/testscript
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test/script/runner/testscript')
-rw-r--r--tests/test/script/runner/testscript9
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/test/script/runner/testscript b/tests/test/script/runner/testscript
index 292e8ec..c95ed07 100644
--- a/tests/test/script/runner/testscript
+++ b/tests/test/script/runner/testscript
@@ -2,8 +2,6 @@
# copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
-#$* -o foo <<<aaa >>>&bbb 2>>>ccc
-
$* # status-def
$* == 0 # status-eq-0
$* -s 1 != 0 # status-ne-0
@@ -110,3 +108,10 @@ $* -i 1 <<:EOI >>:EOO # no-newline-nl-cont-doc
EOI
EOO
+
+$* -o foo >>>out; # file-redirect
+$* -e bar 2>>>&out;
+$* -i 1 <<<out >>EOO
+foo
+bar
+EOO