[Lldb-commits] [lldb] r349775 - [lldbsuite] Skip TestConflictingSymbol (test_shadowed) on Windows
Stella Stamenova via lldb-commits
lldb-commits at lists.llvm.org
Thu Dec 20 09:19:56 PST 2018
Author: stella.stamenova
Date: Thu Dec 20 09:19:56 2018
New Revision: 349775
URL: http://llvm.org/viewvc/llvm-project?rev=349775&view=rev
Log:
[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.
Modified:
lldb/trunk/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/TestConflictingSymbol.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/TestConflictingSymbol.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/TestConflictingSymbol.py?rev=349775&r1=349774&r2=349775&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/TestConflictingSymbol.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/TestConflictingSymbol.py Thu Dec 20 09:19:56 2018
@@ -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")
More information about the lldb-commits
mailing list