do-not-fail-on-unexpected-pass

===================================================================

Gbp-Pq: Name do-not-fail-on-unexpected-pass.diff
This commit is contained in:
LLVM Packaging Team 2022-06-27 14:58:44 +08:00 committed by Lu zhiping
parent 0869eea397
commit f2b3f43b15
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ PASS = ResultCode('PASS', False)
FLAKYPASS = ResultCode('FLAKYPASS', False)
XFAIL = ResultCode('XFAIL', False)
FAIL = ResultCode('FAIL', True)
XPASS = ResultCode('XPASS', True)
XPASS = ResultCode('XPASS', False)
UNRESOLVED = ResultCode('UNRESOLVED', True)
UNSUPPORTED = ResultCode('UNSUPPORTED', False)
TIMEOUT = ResultCode('TIMEOUT', True)