diff options
Diffstat (limited to 'load')
-rw-r--r-- | load/load.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/load/load.cxx b/load/load.cxx index 0d53a0d..4f4e5c4 100644 --- a/load/load.cxx +++ b/load/load.cxx @@ -528,7 +528,10 @@ load_packages (const shared_ptr<repository>& rp, ts.reserve (pm.tests.size ()); for (bpkg::test_dependency& td: pm.tests) - ts.emplace_back (move (td.name), td.type, move (td.constraint)); + ts.emplace_back (move (td.name), + td.type, + td.buildtime, + move (td.constraint)); } // Cache before the package name is moved. |