mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Support -g and -m in test.py at the same time.
This commit is contained in:
parent
5ab3750186
commit
40e34ea2a3
1 changed files with 2 additions and 0 deletions
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…
Add table
Reference in a new issue