do-not-fail-on-unexpected-pass
authorLLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>
Tue, 31 Mar 2020 19:11:56 +0000 (20:11 +0100)
committerSylvestre Ledru <sylvestre@debian.org>
Tue, 31 Mar 2020 19:11:56 +0000 (20:11 +0100)
===================================================================

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

llvm/utils/lit/lit/Test.py

index a10419f33fa1ba7493ca1fb0aac05ac99b8e4ff9..1493e480e6871eb45e6af48a3b55a1ec6e9edbf9 100644 (file)
@@ -32,7 +32,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)