Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(97)

Unified Diff: test/message/testcfg.py

Issue 2141013002: [test] Remove NaCl support from test runner harness. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/cctest/cctest.status ('k') | test/mjsunit/mjsunit.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « test/cctest/cctest.status ('k') | test/mjsunit/mjsunit.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698