diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/libbuild2/driver.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/libbuild2/driver.cxx b/tests/libbuild2/driver.cxx index a14d145..26c00d6 100644 --- a/tests/libbuild2/driver.cxx +++ b/tests/libbuild2/driver.cxx @@ -34,8 +34,11 @@ main (int, char* argv[]) in::build2_in_load (); bash::build2_bash_load (); - scheduler sched (1); // Serial execution. - context ctx (sched); + // Serial execution. + // + scheduler sched (1); + global_mutex_shards shards (1); + context ctx (sched, shards); return 0; } |