From: LLVM Packaging Team Date: Sat, 24 Feb 2024 07:54:59 +0000 (+0100) Subject: do-not-fail-on-unexpected-pass X-Git-Tag: archive/raspbian/1%16.0.6-27+rpi1~6^2~78 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=3d1b0815b074a3c425dd0f1c54ef08f8c1f0d912;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 6c72359440..9962b7e005 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.