aboutsummaryrefslogtreecommitdiff
path: root/unit-tests/test
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 /unit-tests/test
parent84dd05fe654eadd755d25932fcd76d1254dc8865 (diff)
Add support for config.test.output variable
Diffstat (limited to 'unit-tests/test')
-rw-r--r--unit-tests/test/script/parser/command-if.test4
-rw-r--r--unit-tests/test/script/parser/driver.cxx4
-rw-r--r--unit-tests/test/script/parser/scope-if.test4
-rw-r--r--unit-tests/test/script/parser/scope.test2
4 files changed, 7 insertions, 7 deletions
diff --git a/unit-tests/test/script/parser/command-if.test b/unit-tests/test/script/parser/command-if.test
index ffe2c35..29d1dce 100644
--- a/unit-tests/test/script/parser/command-if.test
+++ b/unit-tests/test/script/parser/command-if.test
@@ -89,7 +89,7 @@
EOI
{
? true
- cmd
+ +cmd
}
EOO
@@ -102,7 +102,7 @@
EOI
{
? true
- cmd
+ -cmd
}
EOO
}
diff --git a/unit-tests/test/script/parser/driver.cxx b/unit-tests/test/script/parser/driver.cxx
index 5872fb8..772bc10 100644
--- a/unit-tests/test/script/parser/driver.cxx
+++ b/unit-tests/test/script/parser/driver.cxx
@@ -90,11 +90,11 @@ namespace build2
virtual void
run (scope&,
- const command_expr& e,
+ const command_expr& e, command_type t,
size_t i,
const location&) override
{
- cout << ind_ << e;
+ cout << ind_ << t << e;
if (line_)
cout << " # " << i;
diff --git a/unit-tests/test/script/parser/scope-if.test b/unit-tests/test/script/parser/scope-if.test
index 4f524cf..2867107 100644
--- a/unit-tests/test/script/parser/scope-if.test
+++ b/unit-tests/test/script/parser/scope-if.test
@@ -489,7 +489,7 @@ else
-tdown # 8
EOI
{
- setup # 1
+ +setup # 1
? false one # 2
? false two # 3
? true # 4
@@ -501,7 +501,7 @@ EOI
{
cmd2 # 0
}
- tdown # 8
+ -tdown # 8
}
EOO
diff --git a/unit-tests/test/script/parser/scope.test b/unit-tests/test/script/parser/scope.test
index 144dc54..437a3dc 100644
--- a/unit-tests/test/script/parser/scope.test
+++ b/unit-tests/test/script/parser/scope.test
@@ -115,7 +115,7 @@ $* foo.test <'cmd "$~"' >~"%cmd '?.+[/\\\\]test-driver[/\\\\]foo[/\\\\]1'?%"
EOI
{
{ # 1
- setup
+ +setup
{ # 1/4
cmd abc
}