Commit 07e71020 authored by Michael Achenbach's avatar Michael Achenbach Committed by Commit Bot

[test] Work around Android linker warning in test output

Bug: chromium:1099623
Change-Id: I88ab0cec0ba505dcfc77d2f5eb271321633ca3be
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2270165Reviewed-by: 's avatarTamer Tas <tmrts@chromium.org>
Reviewed-by: 's avatarMaya Lekova <mslekova@chromium.org>
Commit-Queue: Michael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#68556}
parent f954b72d
......@@ -193,6 +193,8 @@ class ExpectedOutProc(OutProc):
line.startswith('**') or
line.startswith('ANDROID') or
line.startswith('###') or
# TODO(machenbach): 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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment