From 4098cdddbb3ef9830b70b3ad2f1e0610a95d9aa0 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 17 Oct 2016 16:43:29 +0300 Subject: Fix few bugs in testscript parser --- build2/test/script/token.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'build2/test/script/token.cxx') 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; default: build2::token_printer (os, t, d); } -- cgit v1.1