llvm-toolchain/debian/patches/do-not-fail-on-unexpected-pass.diff
Sylvestre Ledru 85ad7aafba * If we get an unexpected pass, do not break the tests
do-not-fail-on-unexpected-pass.diff (I am disabling some tests)
* Fix the path detection of the objective h headers.
2013-12-02 10:51:04 +00:00

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)