diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-01-26 16:01:58 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-02-13 12:42:33 +0200 |
commit | 93dbdacafb07b674467aa30c4aefd38bb3871601 (patch) | |
tree | 6675150a587b560193ef21ae1d334300655e9d8e /unit-tests/test | |
parent | 88f0780e34116c0441a8d8c58b8a8fd9fde4b1f5 (diff) |
Add scheduling calls to operation's match()
Diffstat (limited to 'unit-tests/test')
-rw-r--r-- | unit-tests/test/script/parser/driver.cxx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/unit-tests/test/script/parser/driver.cxx b/unit-tests/test/script/parser/driver.cxx index 1e959c1..f1e7483 100644 --- a/unit-tests/test/script/parser/driver.cxx +++ b/unit-tests/test/script/parser/driver.cxx @@ -142,10 +142,9 @@ namespace build2 { tracer trace ("main"); - 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. + init (argv[0], 1); // Fake build system driver, default verbosity. + sched.startup (1); // Serial execution. + reset (strings ()); // No command line variables. bool scope (false); bool id (false); @@ -183,6 +182,8 @@ namespace build2 // be absolute. However, the testscript implementation doesn't // really care. // + ulock ml (model); + file& tt ( targets.insert<file> (work, dir_path (), @@ -204,6 +205,8 @@ namespace build2 name.leaf ().extension (), trace)); + ml.unlock (); + tt.path (path ("driver")); st.path (name); |