aboutsummaryrefslogtreecommitdiff
path: root/load/load.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2021-08-24 13:29:52 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-08-24 14:12:42 +0300
commitdef0adc835b35f503eda48049e9e753786c21655 (patch)
treecc4dcf7c2e02132e2f0cee0523a74906cf70107a /load/load.cxx
parente52bba0e65fb3c2eee9adb7672381964b35aad9c (diff)
Add support for build-time mark (*) in tests, examples, and benchmarks package manifest values
Diffstat (limited to 'load/load.cxx')
-rw-r--r--load/load.cxx5
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.