Fixed Prime95 abort handling

This commit is contained in:
2Shirt 2018-12-17 13:20:39 -07:00
parent baaf1994e3
commit c820d2ac6d
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -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()):