aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/script/lexer.test.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'libbuild2/script/lexer.test.cxx')
-rw-r--r--libbuild2/script/lexer.test.cxx12
1 files changed, 11 insertions, 1 deletions
diff --git a/libbuild2/script/lexer.test.cxx b/libbuild2/script/lexer.test.cxx
index 24fe335..b8de241 100644
--- a/libbuild2/script/lexer.test.cxx
+++ b/libbuild2/script/lexer.test.cxx
@@ -37,7 +37,17 @@ namespace build2
cin.exceptions (istream::failbit | istream::badbit);
path_name in ("<stdin>");
- lexer l (cin, in, m);
+
+ using type = token_type;
+
+ redirect_aliases ra {type (type::in_file),
+ type (type::in_doc),
+ type (type::in_str),
+ type (type::out_file_ovr),
+ type (type::out_file_app),
+ nullopt};
+
+ lexer l (cin, in, m, ra);
// No use printing eos since we will either get it or loop forever.
//