aboutsummaryrefslogtreecommitdiff
path: root/build2/test/init.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-12-16 17:23:54 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-12-16 17:23:54 +0200
commit3ab61fbc2ce25afa617ed6bb50c2f8d701beeaba (patch)
treeaa1357f78905a3383871c0cdd55ef384f564780e /build2/test/init.cxx
parent75152526696fc024628796f0633ed695d5ebc49c (diff)
Add support for passing target name to testscript via test variable
Such a targets is automatically resolved and converted to path.
Diffstat (limited to 'build2/test/init.cxx')
-rw-r--r--build2/test/init.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/build2/test/init.cxx b/build2/test/init.cxx
index bb85464..098718b 100644
--- a/build2/test/init.cxx
+++ b/build2/test/init.cxx
@@ -39,10 +39,12 @@ namespace build2
{
auto& v (var_pool);
- // Note: none are overridable. The test variable is a path with the
- // true/false special values.
+ // Note: none are overridable.
//
- v.insert<path> ("test", variable_visibility::target);
+ // The test variable is a name which can be a path (with the
+ // true/false special values) or a target name.
+ //
+ v.insert<name> ("test", variable_visibility::target);
v.insert<name> ("test.input", variable_visibility::project);
v.insert<name> ("test.output", variable_visibility::project);
v.insert<name> ("test.roundtrip", variable_visibility::project);