From: LLVM Packaging Team Date: Sat, 31 Oct 2020 13:13:25 +0000 (+0000) Subject: do-not-fail-on-unexpected-pass X-Git-Tag: archive/raspbian/1%11.0.0-5+rpi1~1^2~65 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b9a13028e7ef3ae71c3862a97f5e44e539584d85;p=llvm-toolchain-11.git do-not-fail-on-unexpected-pass =================================================================== Gbp-Pq: Name do-not-fail-on-unexpected-pass.diff --- diff --git a/llvm/utils/lit/lit/Test.py b/llvm/utils/lit/lit/Test.py index 62f1bbf1f..46582dd9c 100644 --- a/llvm/utils/lit/lit/Test.py +++ b/llvm/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)