Reviewers: rmcilroy,
Message:
PTAL
Description:
A64: Remove A64 specific lines from testcfg.py.
Please review this at https://codereview.chromium.org/159713005/
SVN Base: https://v8.googlecode.com/svn/branches/experimental/a64
Affected files (+2, -8 lines):
M test/message/testcfg.py
M test/webkit/testcfg.py
Index: test/message/testcfg.py
diff --git a/test/message/testcfg.py b/test/message/testcfg.py
index
89cdcf7559e0d887c9462d374d4a171635e9709c..b472f9cfb30b68ab5baf73545d1837b7d9746807
100644
--- a/test/message/testcfg.py
+++ b/test/message/testcfg.py
@@ -73,13 +73,10 @@ class MessageTestSuite(testsuite.TestSuite):
return f.read()
def _IgnoreLine(self, string):
- """Ignore empty lines, valgrind output, Android output, A64 output."""
+ """Ignore empty lines, valgrind output, Android output."""
if not string: return True
return (string.startswith("==") or string.startswith("**") or
string.startswith("ANDROID") or
- # TODO(ulan): remove this message once all A64 features are
- # implemented.
- string.startswith("UNIMPLEMENTED") or
# These five patterns appear in normal Native Client output.
string.startswith("DEBUG MODE ENABLED") or
string.startswith("tools/nacl-run.py") or
Index: test/webkit/testcfg.py
diff --git a/test/webkit/testcfg.py b/test/webkit/testcfg.py
index
434f4607b99fe34c378dc6288b5baa93e1015e83..e4e3f8fa8b94691ad847b47aef77b03c2de7197c
100644
--- a/test/webkit/testcfg.py
+++ b/test/webkit/testcfg.py
@@ -100,13 +100,10 @@ class WebkitTestSuite(testsuite.TestSuite):
# TODO(machenbach): Share with test/message/testcfg.py
def _IgnoreLine(self, string):
- """Ignore empty lines, valgrind output and Android output, A64
output."""
+ """Ignore empty lines, valgrind output and Android output."""
if not string: return True
return (string.startswith("==") or string.startswith("**") or
string.startswith("ANDROID") or
- # TODO(ulan): remove this message once all A64 features are
- # implemented.
- string.startswith("UNIMPLEMENTED") or
# These five patterns appear in normal Native Client output.
string.startswith("DEBUG MODE ENABLED") or
string.startswith("tools/nacl-run.py") or
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.