Revision: 19154
Author:   [email protected]
Date:     Thu Feb  6 13:13:27 2014 UTC
Log:      A64: Ignore 'unimplemented' messages in webkit tests.

BUG=
[email protected]

Review URL: https://codereview.chromium.org/135493005
http://code.google.com/p/v8/source/detail?r=19154

Modified:
 /branches/experimental/a64/test/webkit/testcfg.py

=======================================
--- /branches/experimental/a64/test/webkit/testcfg.py Mon Jan 27 19:23:17 2014 UTC +++ /branches/experimental/a64/test/webkit/testcfg.py Thu Feb 6 13:13:27 2014 UTC
@@ -100,10 +100,13 @@

   # TODO(machenbach): Share with test/message/testcfg.py
   def _IgnoreLine(self, string):
-    """Ignore empty lines, valgrind output and Android output."""
+ """Ignore empty lines, valgrind output and Android output, A64 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.

Reply via email to