mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-03-07 05:39:59 +00:00
Support -g and -m in test.py at the same time.
This commit is contained in:
parent
5ab3750186
commit
40e34ea2a3
2
test.py
2
test.py
@ -413,6 +413,8 @@ def main():
|
||||
tests = tests_good
|
||||
else:
|
||||
tests = tests_next + tests_good
|
||||
elif '-m' in args and '-g' in args:
|
||||
tests = [i for i in tests_good if i.startswith(tests[0])]
|
||||
elif '-m' in args:
|
||||
tests = [i for i in tests_next + tests_good if i.startswith(tests[0])]
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user