mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-06-14 03:51:40 +00:00

do-not-fail-on-unexpected-pass.diff (I am disabling some tests) * Fix the path detection of the objective h headers.
14 lines
630 B
Diff
14 lines
630 B
Diff
Index: llvm-toolchain-3.4-3.4~+rc1/utils/lit/lit/Test.py
|
|
===================================================================
|
|
--- llvm-toolchain-3.4-3.4~+rc1.orig/utils/lit/lit/Test.py 2013-09-14 03:19:17.000000000 +0200
|
|
+++ llvm-toolchain-3.4-3.4~+rc1/utils/lit/lit/Test.py 2013-12-01 23:11:25.721571881 +0100
|
|
@@ -27,7 +27,7 @@
|
|
PASS = ResultCode('PASS', 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)
|
|
|