do-not-fail-on-unexpected-pass
authorLLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>
Tue, 25 Apr 2017 13:10:10 +0000 (13:10 +0000)
committerSylvestre Ledru <sylvestre@debian.org>
Tue, 25 Apr 2017 13:10:10 +0000 (13:10 +0000)
===================================================================

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

utils/lit/lit/Test.py

index 9c9c47d63217a43414f81ccce0ba9cc53e2f12d2..8dbbfb11ae2f3401180b84b7b28f792d48e2fdcb 100644 (file)
@@ -30,7 +30,7 @@ PASS        = ResultCode('PASS', False)
 FLAKYPASS   = ResultCode('FLAKYPASS', False)
 XFAIL       = ResultCode('XFAIL', False)
 FAIL        = ResultCode('FAIL', True)
-XPASS       = ResultCode('XPASS', True)
+XPASS       = ResultCode('XPASS', False)
 UNRESOLVED  = ResultCode('UNRESOLVED', True)
 UNSUPPORTED = ResultCode('UNSUPPORTED', False)
 TIMEOUT     = ResultCode('TIMEOUT', True)