Index: packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py =================================================================== --- packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py +++ packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py @@ -35,6 +35,7 @@ @expectedFailureFreeBSD("llvm.org/pr25819") @expectedFailureLinux("llvm.org/pr25819") + @expectedFailureWindows("llvm.org/pr25819") def test_scope_lookup_with_run_command(self): """Test scope lookup of functions in lldb.""" self.build() @@ -145,6 +146,7 @@ self.expect("expr -- func()", startstr = "(int) $0 = 2") @expectedFailureLinux("llvm.org/pr25819") + @expectedFailureWindows("llvm.org/pr25819") def test_scope_lookup_before_using_with_run_command(self): """Test scope lookup before using in lldb.""" self.build() @@ -158,9 +160,10 @@ self.expect("expr -- func()", startstr = "(int) $0 = 1") # NOTE: this test may fail on older systems that don't emit import - # emtries in DWARF - may need to add checks for compiler versions here. + # entries in DWARF - may need to add checks for compiler versions here. @expectedFailureFreeBSD("llvm.org/pr25819") @expectedFailureLinux("llvm.org/pr25819") + @expectedFailureWindows("llvm.org/pr25819") def test_scope_after_using_directive_lookup_with_run_command(self): """Test scope lookup after using directive in lldb.""" self.build() @@ -205,6 +208,7 @@ @expectedFailureFreeBSD("llvm.org/pr25819") @expectedFailureLinux("llvm.org/pr25819") + @expectedFailureWindows("llvm.org/pr25819") def test_scope_lookup_shadowed_by_using_with_run_command(self): """Test scope lookup shadowed by using in lldb.""" self.build()