Commit 733569b7 authored by machenbach's avatar machenbach Committed by Commit bot

[foozzie] Suppress asm stack trace difference

BUG=chromium:680064
TBR=clemensh@chromium.org, titzer@chromium.org, ahaas@chromium.org
NOTRY=true

Review-Url: https://codereview.chromium.org/2620333002
Cr-Commit-Position: refs/heads/master@{#42217}
parent fbce2231
...@@ -114,6 +114,9 @@ ALLOWED_LINE_DIFFS = [ ...@@ -114,6 +114,9 @@ ALLOWED_LINE_DIFFS = [
# crbug.com/662840 # crbug.com/662840
r"^.*(?:Trying to access ')?(\w*)(?:(?:' through proxy)|" r"^.*(?:Trying to access ')?(\w*)(?:(?:' through proxy)|"
r"(?: is not defined))$", r"(?: is not defined))$",
# crbug.com/680064. This subsumes one of the above expressions.
r'^(.*)TypeError: .* function$',
] ]
# Lines matching any of the following regular expressions will be ignored. # Lines matching any of the following regular expressions will be ignored.
...@@ -127,6 +130,9 @@ IGNORE_LINES = [ ...@@ -127,6 +130,9 @@ IGNORE_LINES = [
# crbug.com/677032 # crbug.com/677032
r'^.*:\d+:.*asm\.js.*: success$', r'^.*:\d+:.*asm\.js.*: success$',
# crbug.com/680064
r'^\s*at .* \(<anonymous>\)$',
] ]
......
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