INNER CODE UNIT · Python
Go
DaemonEngine/Daemon · tools/crash_test.py:54
def Go(self):
self.Begin()
try:
self.Do()
except Exception as e:
traceback.print_exc()
self.status = "FAILED"
self.End()
return self.status == "PASSED"
class BreakpadCrashTest(Test):
def __init__(self, module, engine, tprefix, fault):
super().__init__(module + "." + fault)
self.engine = engine
self.tprefix = tprefix
self.fault = fault
self.dir = PathJoin(TEMP_DIR, self.name)
try: