diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-10-22 22:51:14 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-10-28 12:16:23 +0300 |
commit | 857d9566ffd4dfc572831fa3cc04e0394c0d7e92 (patch) | |
tree | 212f1579ea2a67ce3ecf066f561c70434ee15204 /tests/manifest/driver.cxx | |
parent | b00a5bfce9546e105d3f16ff0e8c594a600ea42e (diff) |
Add support for tests, examples, and benchmarks package manifest values
Also rename dependency_constraint class to version_constraint.
Diffstat (limited to 'tests/manifest/driver.cxx')
-rw-r--r-- | tests/manifest/driver.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/manifest/driver.cxx b/tests/manifest/driver.cxx index 6ef6193..85097be 100644 --- a/tests/manifest/driver.cxx +++ b/tests/manifest/driver.cxx @@ -61,7 +61,7 @@ main (int argc, char* argv[]) { if (mode == "-p") { - bool complete_depends (false); + bool complete_dependencies (false); bool ignore_unknown (false); for (int i (2); i != argc; ++i) @@ -69,7 +69,7 @@ main (int argc, char* argv[]) string o (argv[i]); if (o == "-c") - complete_depends = true; + complete_dependencies = true; else if (o == "-i") ignore_unknown = true; else @@ -96,7 +96,7 @@ main (int argc, char* argv[]) } }, ignore_unknown, - complete_depends).serialize (s); + complete_dependencies).serialize (s); } else if (mode == "-ec") { @@ -109,8 +109,8 @@ main (int argc, char* argv[]) string s; while (!eof (getline (cin, s))) { - dependency_constraint c (s); - dependency_constraint ec (c.effective (v)); + version_constraint c (s); + version_constraint ec (c.effective (v)); assert (c.complete () == (c == ec)); |