From: LLVM Packaging Team Date: Fri, 22 Jul 2022 13:10:20 +0000 (+0100) Subject: do-not-fail-on-unexpected-pass X-Git-Tag: archive/raspbian/1%13.0.1-7+rpi1^2~78 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=367afed427cbb5fd0bfc7f095523a5dca7ce2cb0;p=llvm-toolchain-13.git do-not-fail-on-unexpected-pass =================================================================== Gbp-Pq: Name do-not-fail-on-unexpected-pass.diff --- diff --git a/llvm/utils/lit/lit/Test.py b/llvm/utils/lit/lit/Test.py index 77b9c235e4..52327a4556 100644 --- a/llvm/utils/lit/lit/Test.py +++ b/llvm/utils/lit/lit/Test.py @@ -52,7 +52,7 @@ XFAIL = ResultCode('XFAIL', 'Expectedly Failed', False) UNRESOLVED = ResultCode('UNRESOLVED', 'Unresolved', True) TIMEOUT = ResultCode('TIMEOUT', 'Timed Out', True) FAIL = ResultCode('FAIL', 'Failed', True) -XPASS = ResultCode('XPASS', 'Unexpectedly Passed', True) +XPASS = ResultCode('XPASS', 'Unexpectedly Passed', False) # Test metric values.