From: LLVM Packaging Team Date: Sat, 4 May 2024 05:30:47 +0000 (+0200) Subject: do-not-fail-on-unexpected-pass X-Git-Tag: archive/raspbian/1%19.1.3-1+rpi1~1^2^2~79 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=20b047be244c59c5ea16bf20626cea1e4fbea49a;p=llvm-toolchain-19.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 051062706f..1d1f3e64ab 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.