do-not-fail-on-unexpected-pass
authorLLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>
Fri, 22 Jul 2022 13:10:20 +0000 (14:10 +0100)
committerSylvestre Ledru <sylvestre@debian.org>
Fri, 22 Jul 2022 13:10:20 +0000 (14:10 +0100)
===================================================================

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

llvm/utils/lit/lit/Test.py

index 77b9c235e40d40e47258148f5d569e3d7fc0e9cc..52327a455687152587c40d1f98fe79e8fcd5852c 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.