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

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

Issue 2593593003: [Predator] Add Clusterfuzz stacktrace parser. (Closed)
Patch Set: Rebase and fix nit. Created 4 years 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/chromecrash_parser_test.py
diff --git a/appengine/findit/crash/test/chromecrash_parser_test.py b/appengine/findit/crash/test/chromecrash_parser_test.py
index 19185afabc9da9425ad6ae60fd17b6d7dc3c9f64..b081a8e40abd096a715f13d407329c1834c29913 100644
--- a/appengine/findit/crash/test/chromecrash_parser_test.py
+++ b/appengine/findit/crash/test/chromecrash_parser_test.py
@@ -16,14 +16,6 @@ from crash.type_enums import LanguageType
class ChromeCrashParserTest(StacktraceTestSuite):
- def testChromeCrashParserIsStartOfNewCallSTack(self):
- parser = ChromeCrashParser()
- self.assertEqual(parser._IsStartOfNewCallStack('dummy line'),
- (False, None, None, None))
- self.assertEqual(parser._IsStartOfNewCallStack('CRASHED [EXC @ 0x508]'),
- (True, 0, CallStackFormatType.DEFAULT,
- LanguageType.CPP))
-
def testReturnEmptyStacktraceForEmptyString(self):
parser = ChromeCrashParser()
deps = {'src/': Dependency('src/', 'https://repo', '1')}
« no previous file with comments | « appengine/findit/crash/test/changelist_classifier_test.py ('k') | appengine/findit/crash/test/clusterfuzz_parser_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698