do-not-fail-on-unexpected-pass
authorLLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>
Mon, 23 Sep 2024 11:23:31 +0000 (13:23 +0200)
committerSylvestre Ledru <sylvestre@debian.org>
Mon, 23 Sep 2024 11:23:31 +0000 (13:23 +0200)
===================================================================

Gbp-Pq: Name do-not-fail-on-unexpected-pass.diff

llvm/utils/lit/lit/Test.py

index 051062706f856755a0b59860218e5fcea6bb947f..1d1f3e64ab871dae9ff60cd73a234e1f6f3eb623 100644 (file)
@@ -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.