aboutsummaryrefslogtreecommitdiff
path: root/build2/test/script/token.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-10-22 16:10:38 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-11-04 09:26:34 +0200
commit132c1f2bb19c92722274c69a190c2f71b801b602 (patch)
treece141b9b866582966262d01777dbf7e9e01e324e /build2/test/script/token.cxx
parent31e16a7413813293e3cccb6799eaa08b7af5af4e (diff)
Add support for no-newline redirects in testscript
The no-newline operators are '<:', '>:', '<<:', and '>>:'.
Diffstat (limited to 'build2/test/script/token.cxx')
-rw-r--r--build2/test/script/token.cxx32
1 files changed, 18 insertions, 14 deletions
diff --git a/build2/test/script/token.cxx b/build2/test/script/token.cxx
index 6ed0443..31bfcd5 100644
--- a/build2/test/script/token.cxx
+++ b/build2/test/script/token.cxx
@@ -21,20 +21,24 @@ namespace build2
switch (t.type)
{
- case token_type::semi: os << q << ';' << q; break;
-
- case token_type::pipe: os << q << '|' << q; break;
- case token_type::clean: os << q << '&' << q; break;
- case token_type::log_and: os << q << "&&" << q; break;
- case token_type::log_or: os << q << "||" << q; break;
-
- case token_type::in_null: os << q << "<!" << q; break;
- case token_type::in_string: os << q << '<' << q; break;
- case token_type::in_document: os << q << "<<" << q; break;
-
- case token_type::out_null: os << q << ">!" << q; break;
- case token_type::out_string: os << q << '>' << q; break;
- case token_type::out_document: os << q << ">>" << q; break;
+ case token_type::semi: os << q << ';' << q; break;
+
+ case token_type::pipe: os << q << '|' << q; break;
+ case token_type::clean: os << q << '&' << q; break;
+ case token_type::log_and: os << q << "&&" << q; break;
+ case token_type::log_or: os << q << "||" << q; break;
+
+ case token_type::in_null: os << q << "<!" << q; break;
+ case token_type::in_str: os << q << '<' << q; break;
+ case token_type::in_str_nn: os << q << "<:" << q; break;
+ case token_type::in_doc: os << q << "<<" << q; break;
+ case token_type::in_doc_nn: os << q << "<<:" << q; break;
+
+ case token_type::out_null: os << q << ">!" << q; break;
+ case token_type::out_str: os << q << '>' << q; break;
+ case token_type::out_str_nn: os << q << ">:" << q; break;
+ case token_type::out_doc: os << q << ">>" << q; break;
+ case token_type::out_doc_nn: os << q << ">>:" << q; break;
default: build2::token_printer (os, t, d);
}