Chromium Code Reviews| Index: test/message/testcfg.py |
| diff --git a/test/message/testcfg.py b/test/message/testcfg.py |
| index b472f9cfb30b68ab5baf73545d1837b7d9746807..5d6ab8466396847aeb9040cd99e9095302d92761 100644 |
| --- a/test/message/testcfg.py |
| +++ b/test/message/testcfg.py |
| @@ -75,6 +75,7 @@ class MessageTestSuite(testsuite.TestSuite): |
| def _IgnoreLine(self, string): |
| """Ignore empty lines, valgrind output, Android output.""" |
| if not string: return True |
| + if not string.strip(): return True |
|
Dmitry Lomov (no reviews)
2014/12/08 14:35:51
We strip expected too in line 94
|
| return (string.startswith("==") or string.startswith("**") or |
| string.startswith("ANDROID") or |
| # These five patterns appear in normal Native Client output. |