mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
test.py: can be run with python-2.5
This commit is contained in:
parent
b49729f7a9
commit
df1d321b96
1 changed files with 1 additions and 2 deletions
3
test.py
3
test.py
|
@ -2,7 +2,6 @@
|
|||
# Automated script to run the pspautotests test suite in PPSSPP.
|
||||
|
||||
import sys
|
||||
import io
|
||||
import os
|
||||
import subprocess
|
||||
import threading
|
||||
|
@ -31,7 +30,7 @@ class Command(object):
|
|||
thread.start()
|
||||
|
||||
thread.join(timeout)
|
||||
if thread.is_alive():
|
||||
if thread.isAlive():
|
||||
self.timeout = True
|
||||
self.process.terminate()
|
||||
thread.join()
|
||||
|
|
Loading…
Add table
Reference in a new issue