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

Unified Diff: appengine/findit/crash/test/fracas_parser_test.py

Issue 1980203002: [Findit] Filter inline function path frames (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Rebase and fix nits. Created 4 years, 7 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
Index: appengine/findit/crash/test/fracas_parser_test.py
diff --git a/appengine/findit/crash/test/fracas_parser_test.py b/appengine/findit/crash/test/fracas_parser_test.py
index 0cebee4005601abfe6dfc79a5cb4c1087d8372ca..9046d43f5649a9d5e0f67eb98003f7750c51b724 100644
--- a/appengine/findit/crash/test/fracas_parser_test.py
+++ b/appengine/findit/crash/test/fracas_parser_test.py
@@ -70,7 +70,7 @@ class FracasParserTest(StacktraceTestSuite):
CRASHED [EXC @ 0x508]
#0 0x8fee in e::f::g(p* &d) src/f.cc:20:2
- #0 0x1fae in h::i::j(p* &d) src/ff.cc:9:1
+ #1 0x1fae in h::i::j(p* &d) src/ff.cc:9:1
"""
)
@@ -84,7 +84,7 @@ class FracasParserTest(StacktraceTestSuite):
expected_callstack1 = CallStack(0)
expected_callstack1.extend(
[StackFrame(0, 'src/', '', 'e::f::g(p* &d)', 'f.cc', [20, 21, 22]),
- StackFrame(0, 'src/', '', 'h::i::j(p* &d)', 'ff.cc', [9, 10])])
+ StackFrame(1, 'src/', '', 'h::i::j(p* &d)', 'ff.cc', [9, 10])])
expected_stacktrace = Stacktrace()
expected_stacktrace.extend([expected_callstack0, expected_callstack1])
« no previous file with comments | « appengine/findit/crash/test/callstack_filters_test.py ('k') | appengine/findit/crash/test/stacktrace_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698