diff options
author | Stella Stamenova <stilis@microsoft.com> | 2018-12-21 20:10:45 +0000 |
---|---|---|
committer | Stella Stamenova <stilis@microsoft.com> | 2018-12-21 20:10:45 +0000 |
commit | 569ac6980957344d90a260ed36e46be72dede973 (patch) | |
tree | 93d5bb2a29f67bdd6229d979a7cb5257126fada9 /lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py | |
parent | 84a2d2968107644634cad98733dcda31f1a4857b (diff) | |
download | bcm5719-llvm-569ac6980957344d90a260ed36e46be72dede973.tar.gz bcm5719-llvm-569ac6980957344d90a260ed36e46be72dede973.zip |
[lldbsuite] Skip flakey Windows tests
Skip a number of tests on Windows that are flakey and will pass/fail unexpectedly every dozen or so runs.
llvm-svn: 349946
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py index 196b038b417..5b7436defdd 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py @@ -44,6 +44,7 @@ class NamespaceLookupTestCase(TestBase): @expectedFailureAll( oslist=["freebsd"], bugnumber="llvm.org/pr25819") + @skipIfWindows # This is flakey on Windows: llvm.org/pr38373 def test_scope_lookup_with_run_command(self): """Test scope lookup of functions in lldb.""" self.build() @@ -201,6 +202,7 @@ class NamespaceLookupTestCase(TestBase): # finds the global ::func(). self.expect("expr -- func()", startstr="(int) $0 = 2") + @skipIfWindows # This is flakey on Windows: llvm.org/pr38373 def test_scope_lookup_before_using_with_run_command(self): """Test scope lookup before using in lldb.""" self.build() |