[Lldb-commits] [lldb] r340574 - Change xfail to skipIf. The exact condition is really difficult to get
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Thu Aug 23 14:08:30 PDT 2018
Author: adrian
Date: Thu Aug 23 14:08:30 2018
New Revision: 340574
URL: http://llvm.org/viewvc/llvm-project?rev=340574&view=rev
Log:
Change xfail to skipIf. The exact condition is really difficult to get
right and doesn't add much signal.
Modified:
lldb/trunk/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py?rev=340574&r1=340573&r2=340574&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py Thu Aug 23 14:08:30 2018
@@ -9,7 +9,7 @@ class TestUnicodeSymbols(TestBase):
mydir = TestBase.compute_mydir(__file__)
- @expectedFailureAll(compiler="clang", compiler_version=['<', '7.0'])
+ @skipIf(compiler="clang", compiler_version=['<', '7.0'])
def test_union_members(self):
self.build()
spec = lldb.SBModuleSpec()
More information about the lldb-commits
mailing list