do-not-fail-on-unexpected-pass
authorLLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>
Mon, 16 Oct 2023 13:14:10 +0000 (13:14 +0000)
committerAndres Salomon <dilinger@debian.org>
Mon, 16 Oct 2023 13:14:10 +0000 (13:14 +0000)
===================================================================

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

llvm/utils/lit/lit/Test.py

index 6c72359440b9cf8ffc8d7341986a7b123ac55956..9962b7e00593bc0dc748801b0d8d0edac5fd5a8e 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.