diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-10-24 18:00:05 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-11-04 09:26:35 +0200 |
commit | 79a83d6dd0f312a5e390f5627f68cc96c4427d33 (patch) | |
tree | f66a0a33ea9d18bf1e85d7c4503fc923028edc80 /unit-tests/test/script/parser | |
parent | 2c0a2b0d688b4450c72cde12ecedaa3fc3c9662a (diff) |
Add support for setup/teardown commands
Diffstat (limited to 'unit-tests/test/script/parser')
-rw-r--r-- | unit-tests/test/script/parser/driver.cxx | 2 | ||||
-rw-r--r-- | unit-tests/test/script/parser/here-document.test | 16 |
2 files changed, 17 insertions, 1 deletions
diff --git a/unit-tests/test/script/parser/driver.cxx b/unit-tests/test/script/parser/driver.cxx index 4fd0489..6e3fed5 100644 --- a/unit-tests/test/script/parser/driver.cxx +++ b/unit-tests/test/script/parser/driver.cxx @@ -70,7 +70,7 @@ namespace build2 { tracer trace ("main"); - init (1); // Default verbosity. + init ("false", 1); // No build system driver, default verbosity. reset (strings ()); // No command line variables. bool scope (false); diff --git a/unit-tests/test/script/parser/here-document.test b/unit-tests/test/script/parser/here-document.test index 13b070a..d6b21fd 100644 --- a/unit-tests/test/script/parser/here-document.test +++ b/unit-tests/test/script/parser/here-document.test @@ -1,4 +1,20 @@ +$* <<EOI >>EOO # blank-lines +cmd <<EOF +foo + +bar + +EOF +EOI +cmd <<EOF +foo + +bar + +EOF +EOO + # quote # # Note: they are still recognized in eval contexts. |