mirror of https://github.com/mgba-emu/mgba.git
Log if a game crashes
This commit is contained in:
parent
2a6d106ebd
commit
d87081e6bc
|
@ -41,6 +41,7 @@ class PerfTest(object):
|
|||
proc.kill()
|
||||
raise
|
||||
if proc.returncode < 0:
|
||||
print('Game crashed!', file=sys.stderr)
|
||||
return
|
||||
reader = csv.DictReader(proc.stdout)
|
||||
self.results = next(reader)
|
||||
|
|
Loading…
Reference in New Issue