Fixed Prime95 abort handling
This commit is contained in:
parent
baaf1994e3
commit
c820d2ac6d
1 changed files with 1 additions and 1 deletions
|
|
@ -1083,7 +1083,7 @@ def run_mprime_test(state, test):
|
|||
test.failed = True
|
||||
test.passed = False
|
||||
test.update_status('NS')
|
||||
elif len(_tmp['Pass']) > 0:
|
||||
elif len(_tmp['Pass']) > 0 and not test.aborted:
|
||||
test.passed = True
|
||||
test.update_status('CS')
|
||||
for line in sorted(_tmp['Pass'].keys()):
|
||||
|
|
|
|||
Loading…
Reference in a new issue