summaryrefslogtreecommitdiff
path: root/debian/patches/do-not-fail-on-unexpected-pass.diff
blob: cc83b792da1987687f9ad0ee9a916909d2356c87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Index: llvm-toolchain-snapshot_8~svn342269/utils/lit/lit/Test.py
===================================================================
--- llvm-toolchain-snapshot_8~svn342269.orig/utils/lit/lit/Test.py
+++ llvm-toolchain-snapshot_8~svn342269/utils/lit/lit/Test.py
@@ -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)