summaryrefslogtreecommitdiff
path: root/chromium/v8/tools/testrunner/outproc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/v8/tools/testrunner/outproc')
-rw-r--r--chromium/v8/tools/testrunner/outproc/base.py2
-rw-r--r--chromium/v8/tools/testrunner/outproc/message.py4
2 files changed, 5 insertions, 1 deletions
diff --git a/chromium/v8/tools/testrunner/outproc/base.py b/chromium/v8/tools/testrunner/outproc/base.py
index 9b65ca564a9..847b2242ffa 100644
--- a/chromium/v8/tools/testrunner/outproc/base.py
+++ b/chromium/v8/tools/testrunner/outproc/base.py
@@ -193,6 +193,8 @@ class ExpectedOutProc(OutProc):
line.startswith('**') or
line.startswith('ANDROID') or
line.startswith('###') or
+ # Android linker warning.
+ line.startswith('WARNING: linker:') or
# FIXME(machenbach): The test driver shouldn't try to use slow
# asserts if they weren't compiled. This fails in optdebug=2.
line == 'Warning: unknown flag --enable-slow-asserts.' or
diff --git a/chromium/v8/tools/testrunner/outproc/message.py b/chromium/v8/tools/testrunner/outproc/message.py
index f196cfd614b..c253b6f8e06 100644
--- a/chromium/v8/tools/testrunner/outproc/message.py
+++ b/chromium/v8/tools/testrunner/outproc/message.py
@@ -59,5 +59,7 @@ class OutProc(base.OutProc):
not string.strip() or
string.startswith("==") or
string.startswith("**") or
- string.startswith("ANDROID")
+ string.startswith("ANDROID") or
+ # Android linker warning.
+ string.startswith('WARNING: linker:')
)