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/parser | |
parent | 40a34dc212a5749350723ac4f390335c0c5283e3 (diff) |
Add support for cleanup types to testscript parser
Diffstat (limited to 'unit-tests/test/script/parser')
-rw-r--r-- | unit-tests/test/script/parser/cleanup.test | 48 |
1 files changed, 31 insertions, 17 deletions
diff --git a/unit-tests/test/script/parser/cleanup.test b/unit-tests/test/script/parser/cleanup.test index 7fe746d..76614e3 100644 --- a/unit-tests/test/script/parser/cleanup.test +++ b/unit-tests/test/script/parser/cleanup.test @@ -1,35 +1,49 @@ -$* <<EOI >>EOO # file-dir -cmd &file &dir/ +: always +: +$* <<EOI >>EOO +cmd &file EOI -cmd &file &dir/ +cmd &file EOO -$* <<EOI >>EOO # quote-file-dir -cmd &"f ile" &"d ir/" +: maybe +: +$* <<EOI >>EOO +cmd &?file EOI -cmd &"f ile" &"d ir/" +cmd &?file EOO -$* <<EOI >>EOO # dup-file -cmd &file &file +: never +: +$* <<EOI >>EOO +cmd &!file EOI -cmd &file &file +cmd &!file EOO -$* <<EOI 2>>EOE != 0 # file-fail1 +: empty +: +$* <<EOI 2>>EOE != 0 +cmd &"" +EOI +testscript:1:6: error: empty cleanup path +EOE + +: missed-before-token +: Path missed before command next token +: +$* <<EOI 2>>EOE != 0 cmd & >file EOI testscript:1:7: error: missing cleanup path EOE -$* <<EOI 2>>EOE != 0 # file-fail2 +: missed-before-end +: Test path missed before end of command +: +$* <<EOI 2>>EOE != 0 cmd & EOI testscript:1:6: error: missing cleanup path EOE - -$* <<EOI 2>>EOE != 0 # file-fail3 -cmd &"" -EOI -testscript:1:6: error: empty cleanup path -EOE |