diff options
author | Vedant Kumar <vsk@apple.com> | 2018-03-09 00:34:43 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2018-03-09 00:34:43 +0000 |
commit | e96dc753399fe57b90470ca206c7ef7b90e4568a (patch) | |
tree | 9da4b100fd301bd35f48c7d8b74ec1b275a6341d /lldb/packages/Python/lldbsuite/test/lang/c | |
parent | fc7321197e549e00c6c851cc82f0b8000d73ff9b (diff) | |
download | bcm5719-llvm-e96dc753399fe57b90470ca206c7ef7b90e4568a.tar.gz bcm5719-llvm-e96dc753399fe57b90470ca206c7ef7b90e4568a.zip |
[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.
llvm-svn: 327089
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/c')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py b/lldb/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py index 896d4cd8b46..871fb168938 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py @@ -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() |