Turn off graphics tests by default.

Maybe this is crashing the buildbot.
This commit is contained in:
Unknown W. Brackets 2013-09-18 08:17:55 -07:00
parent 7223d0c603
commit c6823cb3ea

View file

@ -309,7 +309,7 @@ def run_tests(test_list, args):
if len(test_filenames):
# TODO: Maybe --compare should detect --graphics?
cmdline = [PPSSPP_EXE, '--graphics', '--compare', '--timeout=' + str(TIMEOUT), '@-']
cmdline = [PPSSPP_EXE, '--compare', '--timeout=' + str(TIMEOUT), '@-']
cmdline.extend([i for i in args if i not in ['-g']])
c = Command(cmdline, '\n'.join(test_filenames))