mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
Need to specify self.process or it crashes.
This commit is contained in:
parent
0625012dc6
commit
ccc5acef8e
5
test.py
5
test.py
@ -49,10 +49,9 @@ class Command(object):
|
||||
if thread.isAlive():
|
||||
self.timeout = True
|
||||
if sys.version_info < (2, 6):
|
||||
os.kill(process.pid, signal.SIGKILL)
|
||||
os.kill(self.process.pid, signal.SIGKILL)
|
||||
else:
|
||||
process.terminate()
|
||||
self.process.terminate()
|
||||
self.process.terminate()
|
||||
thread.join()
|
||||
|
||||
# Test names are the C files without the .c extension.
|
||||
|
Loading…
Reference in New Issue
Block a user