diff options
Diffstat (limited to 'libbuild2/build/script/parser.test.cxx')
-rw-r--r-- | libbuild2/build/script/parser.test.cxx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/libbuild2/build/script/parser.test.cxx b/libbuild2/build/script/parser.test.cxx index 10e1701..de3e839 100644 --- a/libbuild2/build/script/parser.test.cxx +++ b/libbuild2/build/script/parser.test.cxx @@ -58,7 +58,7 @@ namespace build2 cout << endl; - return e.back ().pipe.back ().program.string () == "true"; + return e.back ().pipe.back ().program.recall.string () == "true"; } virtual void @@ -160,7 +160,12 @@ namespace build2 // parser p (ctx); path_name nm ("buildfile"); - script s (p.pre_parse (cin, nm, 11 /* line */, nullopt)); + + script s (p.pre_parse (tt, + cin, nm, + 11 /* line */, + string ("test"), + location (nm, 10))); switch (m) { |