aboutsummaryrefslogtreecommitdiff
path: root/build2/test/script/token.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2016-10-17 16:43:29 +0300
committerBoris Kolpackov <boris@codesynthesis.com>2016-11-04 09:26:25 +0200
commit4098cdddbb3ef9830b70b3ad2f1e0610a95d9aa0 (patch)
tree80dcc963e206d375845e1a1ac8a870d84a75a7f2 /build2/test/script/token.cxx
parent8187642ed2b619fc6dc6844f80d107c338c428a3 (diff)
Fix few bugs in testscript parser
Diffstat (limited to 'build2/test/script/token.cxx')
-rw-r--r--build2/test/script/token.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/build2/test/script/token.cxx b/build2/test/script/token.cxx
index bfff25a..27e86d6 100644
--- a/build2/test/script/token.cxx
+++ b/build2/test/script/token.cxx
@@ -30,9 +30,9 @@ namespace build2
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::out_null: os << q << ">!" << q; break;
+ case token_type::out_string: os << q << '>' << q; break;
+ case token_type::out_document: os << q << ">>" << q; break;
default: build2::token_printer (os, t, d);
}