ppsspp/test.py

342 lines
9.2 KiB
Python
Raw Normal View History

2012-12-15 10:27:40 +00:00
#!/usr/bin/env python
# Automated script to run the pspautotests test suite in PPSSPP.
import sys
import io
import os
import subprocess
2012-11-18 21:35:08 +00:00
import threading
PPSSPP_EXECUTABLES = [ "Windows\\Release\\PPSSPPHeadless.exe", "build/PPSSPPHeadless" ]
PPSSPP_EXE = None
TEST_ROOT = "pspautotests/tests/"
teamcity_mode = False
2012-11-18 21:35:08 +00:00
TIMEOUT = 5
class Command(object):
def __init__(self, cmd):
self.cmd = cmd
self.process = None
self.output = None
self.timeout = False
def run(self, timeout):
def target():
self.process = subprocess.Popen(self.cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
self.output, _ = self.process.communicate()
2012-12-15 10:27:40 +00:00
self.output = self.output.decode("utf-8")
2012-11-18 21:35:08 +00:00
thread = threading.Thread(target=target)
thread.start()
thread.join(timeout)
if thread.is_alive():
self.timeout = True
self.process.terminate()
thread.join()
# Test names are the C files without the .c extension.
# These have worked and should keep working always - regression tests.
tests_good = [
"cpu/cpu_alu/cpu_alu",
2013-03-17 18:24:35 +00:00
"cpu/vfpu/vector",
"cpu/vfpu/matrix",
"cpu/vfpu/convert",
2013-03-16 09:39:54 +00:00
"cpu/vfpu/prefixes",
2013-03-17 18:24:35 +00:00
"cpu/vfpu/colors",
"cpu/vfpu/gum",
"cpu/icache/icache",
"cpu/lsu/lsu",
2012-11-09 10:20:39 +00:00
"cpu/fpu/fpu",
2012-11-09 10:33:22 +00:00
2012-12-03 01:19:57 +00:00
"ctrl/ctrl",
2012-12-23 05:28:01 +00:00
"ctrl/idle/idle",
2012-12-03 01:19:57 +00:00
"ctrl/sampling/sampling",
2012-12-23 05:28:01 +00:00
"ctrl/sampling2/sampling2",
2012-11-09 10:33:22 +00:00
"display/display",
"display/vblankmulti",
2012-11-09 10:33:22 +00:00
"dmac/dmactest",
2012-11-30 20:50:52 +00:00
"loader/bss/bss",
2012-11-09 10:33:22 +00:00
"intr/intr",
"intr/vblank/vblank",
"misc/testgp",
2013-01-06 01:24:47 +00:00
"misc/libc",
"misc/dcache",
2013-02-24 03:31:03 +00:00
"mstick/mstick",
2012-11-09 10:33:22 +00:00
"string/string",
"gpu/callbacks/ge_callbacks",
2012-12-21 08:23:55 +00:00
"threads/alarm/alarm",
2012-12-21 20:38:12 +00:00
"threads/alarm/cancel/cancel",
"threads/alarm/refer/refer",
"threads/alarm/set/set",
2013-02-24 03:31:03 +00:00
"threads/callbacks/callbacks",
"threads/events/events",
"threads/events/cancel/cancel",
"threads/events/clear/clear",
"threads/events/create/create",
"threads/events/delete/delete",
"threads/events/poll/poll",
"threads/events/refer/refer",
"threads/events/set/set",
"threads/events/wait/wait",
"threads/k0/k0",
2013-02-25 06:51:55 +00:00
"threads/lwmutex/create",
"threads/lwmutex/delete",
"threads/lwmutex/lock",
"threads/lwmutex/priority",
"threads/lwmutex/refer",
"threads/lwmutex/try",
"threads/lwmutex/try600",
"threads/lwmutex/unlock",
"threads/mbx/mbx",
2012-12-17 07:01:43 +00:00
"threads/mbx/cancel/cancel",
"threads/mbx/create/create",
"threads/mbx/delete/delete",
"threads/mbx/poll/poll",
"threads/mbx/priority/priority",
"threads/mbx/receive/receive",
"threads/mbx/refer/refer",
"threads/mbx/send/send",
2013-02-25 06:51:55 +00:00
"threads/mutex/create",
"threads/mutex/delete",
"threads/mutex/lock",
"threads/mutex/mutex",
2013-02-25 06:51:55 +00:00
"threads/mutex/priority",
"threads/mutex/refer",
"threads/mutex/try",
"threads/mutex/unlock",
"threads/semaphores/semaphores",
2012-12-01 07:22:55 +00:00
"threads/semaphores/cancel/cancel",
"threads/semaphores/create/create",
"threads/semaphores/delete/delete",
"threads/semaphores/poll/poll",
"threads/semaphores/priority/priority",
"threads/semaphores/refer/refer",
"threads/semaphores/signal/signal",
2012-12-01 07:22:55 +00:00
"threads/semaphores/wait/wait",
2013-02-24 03:31:03 +00:00
"threads/threads/release",
"threads/threads/rotate",
"threads/threads/threadend",
"threads/threads/threads",
"threads/vpl/cancel",
2013-02-09 09:19:02 +00:00
"threads/vpl/delete",
"threads/vpl/free",
"threads/vpl/priority",
"threads/vpl/refer",
"threads/vpl/try",
2013-02-24 03:31:03 +00:00
"threads/vpl/vpl",
2012-11-11 18:30:48 +00:00
"power/power",
2012-11-11 21:38:19 +00:00
"umd/callbacks/umd",
"umd/wait/wait",
"io/directory/directory",
2012-11-12 13:35:10 +00:00
]
2012-11-12 13:35:10 +00:00
tests_next = [
2013-02-24 03:31:03 +00:00
# These are the next tests up for fixing. These run by default.
"audio/atrac/atractest",
"audio/mp3/mp3test",
2012-11-30 20:50:52 +00:00
"audio/sascore/sascore",
"malloc/malloc",
2012-11-12 13:35:10 +00:00
"threads/fpl/fpl",
2012-11-30 20:50:52 +00:00
"threads/k0/k0",
2012-11-12 13:35:10 +00:00
"threads/msgpipe/msgpipe",
"threads/scheduling/scheduling",
2013-02-24 03:31:03 +00:00
"threads/threads/create",
2012-11-12 13:35:10 +00:00
"threads/vtimers/vtimer",
2013-02-09 09:19:02 +00:00
"threads/vpl/allocate",
"threads/vpl/create",
2012-11-12 13:35:10 +00:00
"threads/wakeup/wakeup",
2013-02-24 03:31:03 +00:00
"gpu/commands/basic",
"gpu/complex/complex",
"gpu/displaylist/state",
"gpu/reflection/reflection",
"gpu/rendertarget/rendertarget",
"gpu/signals/jumps",
"gpu/signals/simple",
"gpu/simple/simple",
"gpu/triangle/triangle",
"hle/check_not_used_uids",
"font/fonttest",
2012-11-09 10:33:22 +00:00
"io/cwd/cwd",
2013-02-24 03:31:03 +00:00
"io/file/file",
2012-11-09 10:33:22 +00:00
"io/io/io",
"io/iodrv/iodrv",
"modules/loadexec/loader",
"rtc/rtc",
2013-02-28 06:54:41 +00:00
"sysmem/partition",
2013-02-24 03:31:03 +00:00
"sysmem/sysmem",
2012-11-09 10:33:22 +00:00
"umd/io/umd_io",
2012-11-30 20:50:52 +00:00
"umd/raw_access/raw_access",
2012-11-12 13:35:10 +00:00
"utility/systemparam/systemparam",
2012-11-30 20:50:52 +00:00
"video/pmf/pmf",
"video/pmf_simple/pmf_simple",
]
2012-11-11 17:44:20 +00:00
# These don't even run (or run correctly) on the real PSP
test_broken = [
]
# These are the tests we ignore (not important, or impossible to run)
tests_ignored = [
2012-11-09 10:33:22 +00:00
"kirk/kirk",
"me/me",
2012-11-09 11:32:35 +00:00
"umd/umd", # mostly fixed but output seems broken? (first retval of unregister...)
]
def init():
global PPSSPP_EXE
if not os.path.exists("pspautotests"):
2012-12-15 10:27:40 +00:00
print("Please run git submodule init; git submodule update;")
sys.exit(1)
if not os.path.exists(TEST_ROOT + "cpu/cpu_alu/cpu_alu.prx"):
2012-12-15 10:27:40 +00:00
print("Please install the pspsdk and run make in common/ and in all the tests")
print("(checked for existence of cpu/cpu_alu/cpu_alu.prx)")
sys.exit(1)
for p in PPSSPP_EXECUTABLES:
if os.path.exists(p):
PPSSPP_EXE = p
break
if not PPSSPP_EXE:
2012-12-15 10:27:40 +00:00
print("PPSSPP executable missing, please build one.")
sys.exit(1)
def tcprint(arg):
global teamcity_mode
if teamcity_mode:
2012-12-15 10:27:40 +00:00
print(arg)
def run_tests(test_list, args):
2012-11-18 21:35:08 +00:00
global PPSSPP_EXE, TIMEOUT
2012-11-09 10:03:01 +00:00
tests_passed = []
tests_failed = []
2012-12-15 10:27:40 +00:00
for test in test_list:
# Try prx first
expected_filename = TEST_ROOT + test + ".expected"
elf_filename = TEST_ROOT + test + ".prx"
2012-12-15 10:27:40 +00:00
print(elf_filename)
if not os.path.exists(elf_filename):
2012-12-15 10:27:40 +00:00
print("WARNING: no prx, trying elf")
elf_filename = TEST_ROOT + test + ".elf"
if not os.path.exists(elf_filename):
print("ERROR: PRX/ELF file missing, failing test: " + test)
tests_failed.append(test)
tcprint("##teamcity[testIgnored name='%s' message='PRX/ELF missing']" % test)
continue
if not os.path.exists(expected_filename):
print("WARNING: expects file missing, failing test: " + test)
2012-11-09 10:03:01 +00:00
tests_failed.append(test)
tcprint("##teamcity[testIgnored name='%s' message='Expects file missing']" % test)
continue
expected_output = open(expected_filename).read().strip()
2012-12-15 10:27:40 +00:00
tcprint("##teamcity[testStarted name='%s' captureStandardOutput='true']" % test)
2012-11-18 21:35:08 +00:00
cmdline = [PPSSPP_EXE, elf_filename]
cmdline.extend([i for i in args if i not in ['-v', '-g']])
if os.path.exists(expected_filename + ".bmp"):
cmdline.extend(["--screenshot=" + expected_filename + ".bmp", "--graphics"])
2012-11-18 21:35:08 +00:00
c = Command(cmdline)
c.run(TIMEOUT)
output = c.output.strip()
2012-12-15 10:27:40 +00:00
2012-11-18 21:35:08 +00:00
if c.timeout:
2012-12-15 10:27:40 +00:00
print(output)
print("Test exceded limit of %d seconds." % TIMEOUT)
tests_failed.append(test)
2012-11-18 21:35:08 +00:00
tcprint("##teamcity[testFailed name='%s' message='Test timeout']" % test)
tcprint("##teamcity[testFinished name='%s']" % test)
continue
2012-11-09 10:03:01 +00:00
if output.startswith("TESTERROR"):
2012-12-15 10:27:40 +00:00
print("Failed to run test " + elf_filename + "!")
2012-11-09 10:03:01 +00:00
tests_failed.append(test)
tcprint("##teamcity[testFailed name='%s' message='Failed to run test']" % test)
tcprint("##teamcity[testFinished name='%s']" % test)
2012-11-09 10:03:01 +00:00
continue
different = False
expected_lines = [x.strip() for x in expected_output.splitlines()]
output_lines = [x.strip() for x in output.splitlines()]
2012-12-15 10:27:40 +00:00
for i in range(0, min(len(output_lines), len(expected_lines))):
2012-11-09 10:03:01 +00:00
if output_lines[i] != expected_lines[i]:
2012-12-15 10:27:40 +00:00
print("E%i < %s" % (i + 1, expected_lines[i]))
print("O%i > %s" % (i + 1, output_lines[i]))
2012-11-09 10:03:01 +00:00
different = True
if len(output_lines) != len(expected_lines):
for i in range(len(output_lines), len(expected_lines)):
2012-12-15 10:27:40 +00:00
print("E%i < %s" % (i + 1, expected_lines[i]))
for i in range(len(expected_lines), len(output_lines)):
2012-12-15 10:27:40 +00:00
print("O%i > %s" % (i + 1, output_lines[i]))
print("*** Different number of lines!")
different = True
2012-11-09 10:03:01 +00:00
if not different:
2012-11-11 21:38:19 +00:00
if '-v' in args:
2012-12-15 10:27:40 +00:00
print("++++++++++++++ The Equal Output +++++++++++++")
print("\n".join(output_lines))
print("+++++++++++++++++++++++++++++++++++++++++++++")
print(" " + test + " - passed!")
2012-11-09 10:03:01 +00:00
tests_passed.append(test)
tcprint("##teamcity[testFinished name='%s']" % test)
else:
2012-11-11 18:30:48 +00:00
if '-v' in args:
2012-12-15 10:27:40 +00:00
print("============== output from failed " + test + " :")
print(output)
print("============== expected output:")
print(expected_output)
print("===============================")
2012-11-09 10:03:01 +00:00
tests_failed.append(test)
tcprint("##teamcity[testFailed name='%s' message='Output different from expected file']" % test)
tcprint("##teamcity[testFinished name='%s']" % test)
2012-11-09 10:03:01 +00:00
2012-12-15 10:27:40 +00:00
print("%i tests passed, %i tests failed." % (
len(tests_passed), len(tests_failed)))
2012-11-09 10:03:01 +00:00
if len(tests_failed):
2012-12-15 10:27:40 +00:00
print("Failed tests:")
2012-11-09 10:03:01 +00:00
for t in tests_failed:
2012-12-15 10:27:40 +00:00
print(" " + t)
print("Ran " + PPSSPP_EXE)
def main():
global teamcity_mode
init()
tests = []
args = []
for arg in sys.argv[1:]:
if arg == '--teamcity':
teamcity_mode = True
elif arg[0] == '-':
args.append(arg)
else:
tests.append(arg)
if not tests:
2012-11-12 13:35:10 +00:00
if '-g' in args:
tests = tests_good
else:
tests = tests_next + tests_good
run_tests(tests, args)
main()