Index: tools/testrunner/local/testsuite.py |
diff --git a/tools/testrunner/local/testsuite.py b/tools/testrunner/local/testsuite.py |
index 6ff97b34b9e549162f8bebf2bdd23225782ae00e..84f07feefbca263ecb8fd342f8f6b18689f700c0 100644 |
--- a/tools/testrunner/local/testsuite.py |
+++ b/tools/testrunner/local/testsuite.py |
@@ -136,6 +136,9 @@ class TestSuite(object): |
t.outcomes = self.rules[testname] |
if statusfile.DoSkip(t.outcomes): |
continue # Don't add skipped tests to |filtered|. |
+ for outcome in t.outcomes: |
Michael Achenbach
2014/11/20 08:38:31
I'd rather put this code into a new method/loop ri
|
+ if outcome.startswith('Flags: '): |
+ t.flags += outcome[7:].split() |
flaky = statusfile.IsFlaky(t.outcomes) |
slow = statusfile.IsSlow(t.outcomes) |
pass_fail = statusfile.IsPassOrFail(t.outcomes) |