From def0adc835b35f503eda48049e9e753786c21655 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 24 Aug 2021 13:29:52 +0300 Subject: Add support for build-time mark (*) in tests, examples, and benchmarks package manifest values --- load/load.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'load/load.cxx') 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& 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. -- cgit v1.1