From: LLVM Packaging Team Date: Sat, 29 Jan 2022 09:17:38 +0000 (+0000) Subject: do-not-fail-on-unexpected-pass X-Git-Tag: archive/raspbian/1%12.0.1-19+rpi1^2~69 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=3f3c7c1515d1907ce3fd5b18d380b69ce15c1314;p=llvm-toolchain-12.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 59fefbc7f0..9b33c3bad8 100644 --- a/llvm/utils/lit/lit/Test.py +++ b/llvm/utils/lit/lit/Test.py @@ -51,7 +51,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.