aboutsummaryrefslogtreecommitdiff
path: root/unit-tests/test
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-01-25 15:41:44 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-02-13 12:39:24 +0200
commit88f0780e34116c0441a8d8c58b8a8fd9fde4b1f5 (patch)
tree1240b36211772479dc1220712e0daed4e35ecd85 /unit-tests/test
parent61aa8e2b4bd7849838c04dc1f421c4760d88319f (diff)
Add model mutex, make var_pool const by default
Diffstat (limited to 'unit-tests/test')
-rw-r--r--unit-tests/test/script/parser/driver.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/unit-tests/test/script/parser/driver.cxx b/unit-tests/test/script/parser/driver.cxx
index f641dc4..1e959c1 100644
--- a/unit-tests/test/script/parser/driver.cxx
+++ b/unit-tests/test/script/parser/driver.cxx
@@ -142,9 +142,10 @@ namespace build2
{
tracer trace ("main");
- init (argv[0], 1); // Fake build system driver, default verbosity.
- sched.startup (1); // Serial execution.
- reset (strings ()); // No command line variables.
+ init (argv[0], 1); // Fake build system driver, default verbosity.
+ ulock ml (model);
+ sched.startup (1); // Serial execution.
+ reset (ml, strings ()); // No command line variables.
bool scope (false);
bool id (false);
@@ -191,7 +192,7 @@ namespace build2
value& v (
tt.assign (
- var_pool.insert<target_triplet> (
+ var_pool.rw (ml).insert<target_triplet> (
"test.target", variable_visibility::project)));
v = cast<target_triplet> ((*global_scope)["build.host"]);