blob: f9b8fabbd37bdecf2f732b125833b24009c56339 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Index: llvm-toolchain-snapshot_3.9~svn268880/utils/lit/lit/Test.py
===================================================================
--- llvm-toolchain-snapshot_3.9~svn268880.orig/utils/lit/lit/Test.py
+++ llvm-toolchain-snapshot_3.9~svn268880/utils/lit/lit/Test.py
@@ -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)
|