do-not-fail-on-unexpected-pass
authorLLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>
Thu, 11 Jan 2024 13:15:09 +0000 (14:15 +0100)
committerSylvestre Ledru <sylvestre@debian.org>
Thu, 11 Jan 2024 13:15:09 +0000 (14:15 +0100)
===================================================================

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.