Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(97)

Unified Diff: tools/foozzie/v8_suppressions.py

Issue 2620333002: [foozzie] Suppress asm stack trace difference (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>\)$',
]
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698