| Index: test/message/testcfg.py
|
| diff --git a/test/message/testcfg.py b/test/message/testcfg.py
|
| index 577b476637d3d00388a8755d7e59379806455739..620328e90d9090f7e2b15f9951915fa06801656f 100644
|
| --- a/test/message/testcfg.py
|
| +++ b/test/message/testcfg.py
|
| @@ -86,13 +86,7 @@ class MessageTestSuite(testsuite.TestSuite):
|
| if not string: return True
|
| if not string.strip(): return True
|
| return (string.startswith("==") or string.startswith("**") or
|
| - string.startswith("ANDROID") or
|
| - # These five patterns appear in normal Native Client output.
|
| - string.startswith("DEBUG MODE ENABLED") or
|
| - string.startswith("tools/nacl-run.py") or
|
| - string.find("BYPASSING ALL ACL CHECKS") > 0 or
|
| - string.find("Native Client module will be loaded") > 0 or
|
| - string.find("NaClHostDescOpen:") > 0)
|
| + string.startswith("ANDROID"))
|
|
|
| def IsFailureOutput(self, testcase):
|
| output = testcase.output
|
|
|