Index: tools/foozzie/v8_suppressions.py |
diff --git a/tools/foozzie/v8_suppressions.py b/tools/foozzie/v8_suppressions.py |
index 2c4a8f5175efaeee94eaef6b3beb4068d72f221d..22fee3c06b638c586e52fc560c704c962f19adc7 100644 |
--- a/tools/foozzie/v8_suppressions.py |
+++ b/tools/foozzie/v8_suppressions.py |
@@ -114,6 +114,9 @@ ALLOWED_LINE_DIFFS = [ |
# crbug.com/662840 |
r"^.*(?:Trying to access ')?(\w*)(?:(?:' through proxy)|" |
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. |
@@ -127,6 +130,9 @@ IGNORE_LINES = [ |
# crbug.com/677032 |
r'^.*:\d+:.*asm\.js.*: success$', |
+ |
+ # crbug.com/680064 |
+ r'^\s*at .* \(<anonymous>\)$', |
] |