aboutsummaryrefslogtreecommitdiff
path: root/build2/test/script/runner
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-03-08 00:39:30 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-03-15 19:52:39 +0300
commit52a29dd64479e9313848941078a2619b47f2c61b (patch)
treed2d83faab7298983793aaf8dd1009d371f324488 /build2/test/script/runner
parent84dd05fe654eadd755d25932fcd76d1254dc8865 (diff)
Add support for config.test.output variable
Diffstat (limited to 'build2/test/script/runner')
-rw-r--r--build2/test/script/runner10
1 files changed, 8 insertions, 2 deletions
diff --git a/build2/test/script/runner b/build2/test/script/runner
index 56ea834..566b9de 100644
--- a/build2/test/script/runner
+++ b/build2/test/script/runner
@@ -42,7 +42,10 @@ namespace build2
// testscript. It can be used in diagnostics.
//
virtual void
- run (scope&, const command_expr&, size_t index, const location&) = 0;
+ run (scope&,
+ const command_expr&, command_type,
+ size_t index,
+ const location&) = 0;
virtual bool
run_if (scope&, const command_expr&, size_t, const location&) = 0;
@@ -66,7 +69,10 @@ namespace build2
enter (scope&, const location&) override;
virtual void
- run (scope&, const command_expr&, size_t, const location&) override;
+ run (scope&,
+ const command_expr&, command_type,
+ size_t,
+ const location&) override;
virtual bool
run_if (scope&, const command_expr&, size_t, const location&) override;