diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2021-09-06 19:22:56 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2021-09-24 11:37:05 +0300 |
commit | 28de3ed8416c20ab54527e5cc8a48c46de3bb9b5 (patch) | |
tree | 70d8b5843ab0d990f03cb6277ad340b797d4a17c /tests/load/driver.cxx | |
parent | a9b630f95ba352430f1f25d25b538672fddce93c (diff) |
Add support for requires, tests, examples, benchmarks, and host task manifest values
Diffstat (limited to 'tests/load/driver.cxx')
-rw-r--r-- | tests/load/driver.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/load/driver.cxx b/tests/load/driver.cxx index 7ebbc93..02ce68a 100644 --- a/tests/load/driver.cxx +++ b/tests/load/driver.cxx @@ -806,7 +806,7 @@ test_pkg_repos (const cstrings& loader_args, assert (fpv5->dependencies[2][1] == dep ("libexpat", nullopt)); requirements& fpvr5 (fpv5->requirements); - assert (fpvr5.size () == 4); + assert (fpvr5.size () == 5); assert (fpvr5[0] == req_alts ({"linux", "windows", "macosx"})); assert (!fpvr5[0].conditional); @@ -825,10 +825,12 @@ test_pkg_repos (const cstrings& loader_args, assert (fpvr5[3].conditional); assert (fpvr5[3].comment == "Only if using VC++ on Windows."); + assert (fpvr5[4][0] == "host"); + assert (check_location (fpv5)); assert (fpv5->sha256sum && *fpv5->sha256sum == - "042a9c1df1bf6fc61a47d864dceff3cb68640aa68490174c10f5baf813116fa5"); + "6692a487e0908598e36bdeb9c25ed1e4a35bb99587dbc475807d314fa0719ac6"); assert (fpv5->buildable); |