do-not-fail-on-unexpected-pass
authorLLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>
Sat, 7 Nov 2020 14:53:51 +0000 (14:53 +0000)
committerSylvestre Ledru <sylvestre@debian.org>
Sat, 7 Nov 2020 14:53:51 +0000 (14:53 +0000)
===================================================================

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

llvm/utils/lit/lit/Test.py

index a38ea4e7717a32b02a7c80b061c91a4aec88061c..36b6688be7292d83911ff908d62696f1db922e94 100644 (file)
@@ -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.