aboutsummaryrefslogtreecommitdiff
path: root/build2/test/script/token.cxx
diff options
context:
space:
mode:
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);
}