diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2016-11-01 12:18:59 +0300 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-11-04 09:26:37 +0200 |
commit | 5583ffaa2581858cb7f7f75e28660bc038bcc8ec (patch) | |
tree | 72707ac943e4f2a5a0457869d7672db558940461 /unit-tests/test/script/lexer/script-line.test | |
parent | 40a34dc212a5749350723ac4f390335c0c5283e3 (diff) |
Add support for cleanup types to testscript parser
Diffstat (limited to 'unit-tests/test/script/lexer/script-line.test')
-rw-r--r-- | unit-tests/test/script/lexer/script-line.test | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/unit-tests/test/script/lexer/script-line.test b/unit-tests/test/script/lexer/script-line.test index 96eb19c..44f6002 100644 --- a/unit-tests/test/script/lexer/script-line.test +++ b/unit-tests/test/script/lexer/script-line.test @@ -112,11 +112,23 @@ $* <"cmd <<<in >>>out 2>>>&err" >>EOO # file-redirect <newline> EOO -$* <"cmd &file &dir/" >>EOO # cleanup +$* <"cmd &file" >>EOO # cleanup-always 'cmd' & 'file' -& -'dir/' +<newline> +EOO + +$* <"cmd &?file" >>EOO # cleanup-maybe +'cmd' +&? +'file' +<newline> +EOO + +$* <"cmd &!file" >>EOO # cleanup-never +'cmd' +&! +'file' <newline> EOO |