aboutsummaryrefslogtreecommitdiffstats
path: root/runtest.rb
diff options
context:
space:
mode:
authorFumitoshi Ukai <ukai@google.com>2015-07-28 15:26:56 +0900
committerFumitoshi Ukai <ukai@google.com>2015-07-28 15:40:20 +0900
commitbfabe632de4fca973c0a1abe44ddf8873a191723 (patch)
treeb5d1ff7b2c020cc00c752ea3d03a0b8914b1c381 /runtest.rb
parent65dce5461745a58fe5a294527aaaf6fc8f8b73ee (diff)
downloadplatform_build_kati-bfabe632de4fca973c0a1abe44ddf8873a191723.tar.gz
platform_build_kati-bfabe632de4fca973c0a1abe44ddf8873a191723.tar.bz2
platform_build_kati-bfabe632de4fca973c0a1abe44ddf8873a191723.zip
runtest.rb: add TODO mark go-ninja and c-ninja
Diffstat (limited to 'runtest.rb')
-rwxr-xr-xruntest.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/runtest.rb b/runtest.rb
index b0cfae8..5b517dc 100755
--- a/runtest.rb
+++ b/runtest.rb
@@ -137,7 +137,7 @@ end
run_make_test = proc do |mk|
c = File.read(mk)
expected_failure = false
- if c =~ /\A# TODO(?:\(([a-z|]+)\))?/
+ if c =~ /\A# TODO(?:\(([-a-z|]+)\))?/
if $1
todos = $1.split('|')
if todos.include?('go') && !ckati
@@ -146,6 +146,12 @@ run_make_test = proc do |mk|
if todos.include?('c') && ckati
expected_failure = true
end
+ if todos.include?('go-ninja') && !ckati && via_ninja
+ expected_failure = true
+ end
+ if todos.include?('c-ninja') && ckati && via_ninja
+ expected_failure = true
+ end
if todos.include?('ninja') && via_ninja
expected_failure = true
end