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

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

Issue 1914113002: [Findit] Enable project classifier and component classifier (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Rebase 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/callstack_filters_test.py
diff --git a/appengine/findit/crash/test/callstack_filters_test.py b/appengine/findit/crash/test/callstack_filters_test.py
index 31ec6c7b0bf330fdf8c7a19886ab4631a943e931..20b6f8301ba89982618268482890a046d09c6592 100644
--- a/appengine/findit/crash/test/callstack_filters_test.py
+++ b/appengine/findit/crash/test/callstack_filters_test.py
@@ -12,17 +12,20 @@ class CallStackFiltersTest(StacktraceTestSuite):
def testFilterInlineFunctionFrames(self):
frame_list = [
StackFrame(
- 0, '', 'src/', 'normal_func', 'f.cc', [2]),
+ 0, 'src/', 'normal_func', 'f.cc', 'dummy/src/f.cc', [2]),
StackFrame(
- 0, '', 'src/', 'inline_func',
- 'third_party/llvm-build/Release+Asserts/include/c++/v1/a', [1]),
+ 0, 'src/', 'inline_func',
+ 'third_party/llvm-build/Release+Asserts/include/c++/v1/a',
+ 'src/third_party/llvm-build/Release+Asserts/include/c++/v1/a', [1]),
StackFrame(
- 0, '', 'src/', 'inline_func',
+ 0, 'src/', 'inline_func',
'linux/debian_wheezy_amd64-sysroot/usr/include/c++/4.6/bits/b',
+ 'src/linux/debian_wheezy_amd64-sysroot/usr/include/c++/4.6/bits/b',
[1]),
StackFrame(
- 0, '', 'src/', 'inline_func',
- 'eglibc-3GlaMS/eglibc-2.19/sysdeps/unix/c', [1])
+ 0, 'src/', 'inline_func',
+ 'eglibc-3GlaMS/eglibc-2.19/sysdeps/unix/c',
+ 'src/eglibc-3GlaMS/eglibc-2.19/sysdeps/unix/c', [1])
]
expected_frame_list = frame_list[:1]
@@ -31,4 +34,3 @@ class CallStackFiltersTest(StacktraceTestSuite):
callstack_filters.FilterInlineFunctionFrames(
CallStack(0, frame_list=frame_list)),
CallStack(0, frame_list=expected_frame_list))
-
« no previous file with comments | « appengine/findit/crash/scorers/test/aggregator_test.py ('k') | appengine/findit/crash/test/callstack_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698