aboutsummaryrefslogtreecommitdiff
path: root/build2/test/script/script.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-12-15 12:17:44 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-12-15 12:17:44 +0200
commitf4453f3dacef727cfd0fb8f17c47ac3eea367a34 (patch)
treeb0ea119ca8ede6766659b3ffaf6eb8123ccae525 /build2/test/script/script.cxx
parent9d1f6b5bf5b461ce0aeb9b42b3e1022395f60d84 (diff)
Implement test.redirects, test.cleanups
Diffstat (limited to 'build2/test/script/script.cxx')
-rw-r--r--build2/test/script/script.cxx26
1 files changed, 20 insertions, 6 deletions
diff --git a/build2/test/script/script.cxx b/build2/test/script/script.cxx
index f1e1bd4..7abc3b6 100644
--- a/build2/test/script/script.cxx
+++ b/build2/test/script/script.cxx
@@ -393,9 +393,11 @@ namespace build2
: // Enter the test* variables with the same variable types as in
// buildfiles.
//
- test_var (var_pool.insert<path> ("test")),
- opts_var (var_pool.insert<strings> ("test.options")),
- args_var (var_pool.insert<strings> ("test.arguments")),
+ test_var (var_pool.insert<path> ("test")),
+ options_var (var_pool.insert<strings> ("test.options")),
+ arguments_var (var_pool.insert<strings> ("test.arguments")),
+ redirects_var (var_pool.insert<strings> ("test.redirects")),
+ cleanups_var (var_pool.insert<strings> ("test.cleanups")),
wd_var (var_pool.insert<dir_path> ("~")),
id_var (var_pool.insert<path> ("@")),
@@ -441,6 +443,8 @@ namespace build2
// Unless we have the test variable set on the test or script target,
// set it at the script level to the test target's path.
//
+ // Note that test variable's visibility is target.
+ //
if (!find (test_var))
{
value& v (assign (test_var));
@@ -553,10 +557,20 @@ namespace build2
if (lookup l = find (root->test_var))
s.push_back (cast<path> (l).representation ());
- if (lookup l = find (root->opts_var))
+ if (lookup l = find (root->options_var))
+ append (cast<strings> (l));
+
+ if (lookup l = find (root->arguments_var))
+ append (cast<strings> (l));
+
+ // Keep redirects/cleanups out of $N.
+ //
+ size_t n (s.size ());
+
+ if (lookup l = find (root->redirects_var))
append (cast<strings> (l));
- if (lookup l = find (root->args_var))
+ if (lookup l = find (root->cleanups_var))
append (cast<strings> (l));
// Set the $N values if present.
@@ -565,7 +579,7 @@ namespace build2
{
value& v (assign (*root->cmdN_var[i]));
- if (i < s.size ())
+ if (i < n)
{
if (i == 0)
v = path (s[i]);