[Lldb-commits] [lldb] r327089 - [test] Skip a test which sporadically fails in its dsym variant
Vedant Kumar via lldb-commits
lldb-commits at lists.llvm.org
Thu Mar 8 16:34:43 PST 2018
Author: vedantk
Date: Thu Mar 8 16:34:43 2018
New Revision: 327089
URL: http://llvm.org/viewvc/llvm-project?rev=327089&view=rev
Log:
[test] Skip a test which sporadically fails in its dsym variant
There is a mailing list discussion re: r325927 about why this test fails
in the dsym variant. I've marked it skipped for now, until the issue is
resolved.
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=327089&r1=327088&r2=327089&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 Mar 8 16:34:43 2018
@@ -2,12 +2,14 @@
import lldb
from lldbsuite.test.lldbtest import *
import lldbsuite.test.lldbutil as lldbutil
+from lldbsuite.test.decorators import *
class TestUnicodeSymbols(TestBase):
mydir = TestBase.compute_mydir(__file__)
+ @skipIf(debug_info=["dsym"])
def test_union_members(self):
self.build()
spec = lldb.SBModuleSpec()
More information about the lldb-commits
mailing list