From: LLVM Packaging Team Date: Wed, 30 Nov 2022 14:31:52 +0000 (+0000) Subject: do-not-fail-on-unexpected-pass X-Git-Tag: archive/raspbian/1%16.0.6-15+rpi1~4^2^2^2~79 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=f8a2ff82d006c60751998ab4143174b93a54d9c5;p=llvm-toolchain-16.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 dc1c66e896..50a05ad79e 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.