diff options
author | Stella Stamenova <stilis@microsoft.com> | 2018-12-20 17:19:56 +0000 |
---|---|---|
committer | Stella Stamenova <stilis@microsoft.com> | 2018-12-20 17:19:56 +0000 |
commit | e6ebb51052d0f82adba25edac5bb35c0175a84d9 (patch) | |
tree | f43514db40aaef6c4b121a4ca62c28b9cefd5108 /lldb/packages/Python/lldbsuite | |
parent | 199427100bd090f7f5aa8615921813d7ab1c7f51 (diff) | |
download | bcm5719-llvm-e6ebb51052d0f82adba25edac5bb35c0175a84d9.tar.gz bcm5719-llvm-e6ebb51052d0f82adba25edac5bb35c0175a84d9.zip |
[lldbsuite] Skip TestConflictingSymbol (test_shadowed) on Windows
The test is "passing" on windows, but it is a false positive. Skip it on Windows until it is fixed on all platforms.
llvm-svn: 349775
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/TestConflictingSymbol.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/TestConflictingSymbol.py b/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/TestConflictingSymbol.py index fa14e5ef62e..b0fde47a2c0 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/TestConflictingSymbol.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/TestConflictingSymbol.py @@ -93,6 +93,7 @@ class TestConflictingSymbols(TestBase): "Multiple internal symbols"]) @expectedFailureAll(bugnumber="llvm.org/pr35043") + @skipIfWindows # This test is "passing" on Windows, but it is a false positive. def test_shadowed(self): self.build() exe = self.getBuildArtifact("a.out") |