diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2016-10-26 12:32:46 +0300 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-11-04 09:26:36 +0200 |
commit | 5daf46f700217521e8ba90c4be0e0369105544df (patch) | |
tree | 5ef8e2102aebd0383c1f000512151571c6edb38d /tests/test/script/runner/testscript | |
parent | 43378e3827fd0d17325646c40c76bab9db1da19a (diff) |
Add support of file redirects to testscript runner
Diffstat (limited to 'tests/test/script/runner/testscript')
-rw-r--r-- | tests/test/script/runner/testscript | 9 |
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 |