aboutsummaryrefslogtreecommitdiff
path: root/build2/test/script/token.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-10-24 15:35:04 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-11-04 09:26:35 +0200
commit5bfa47e072eb0592a4df15dbf68ce3ea76383905 (patch)
tree515c6e028236a8d631f4701c5758445f054731c0 /build2/test/script/token.cxx
parentb0bed0e1205f44ae73850fac521f9162f29adef5 (diff)
Minor testscript changes
Diffstat (limited to 'build2/test/script/token.cxx')
-rw-r--r--build2/test/script/token.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/build2/test/script/token.cxx b/build2/test/script/token.cxx
index 93f4f83..2e86e29 100644
--- a/build2/test/script/token.cxx
+++ b/build2/test/script/token.cxx
@@ -28,14 +28,14 @@ namespace build2
case token_type::log_and: os << q << "&&" << q; break;
case token_type::log_or: os << q << "||" << q; break;
- case token_type::in_std: os << q << "<+" << q; break;
+ case token_type::in_pass: 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_std: os << q << ">+" << q; break;
+ case token_type::out_pass: 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;