From 5b96bc959c01b29def24a8d0a5231fbcc127f765 Mon Sep 17 00:00:00 2001 From: LLVM Packaging Team Date: Tue, 28 Sep 2021 11:06:50 +0100 Subject: [PATCH] do-not-fail-on-unexpected-pass =================================================================== Gbp-Pq: Name do-not-fail-on-unexpected-pass.diff --- llvm/utils/lit/lit/Test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/utils/lit/lit/Test.py b/llvm/utils/lit/lit/Test.py index a38ea4e77..36b6688be 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. -- 2.30.2