Author: zturner Date: Fri Sep 11 14:59:39 2015 New Revision: 247455 URL: http://llvm.org/viewvc/llvm-project?rev=247455&view=rev Log: XFAIL some C++ language specific tests on Windows.
http://llvm.org/pr24764 Modified: lldb/trunk/test/functionalities/breakpoint/cpp/TestCPPBreakpointLocations.py lldb/trunk/test/lang/c/global_variables/TestGlobalVariables.py lldb/trunk/test/lang/c/struct_types/TestStructTypes.py lldb/trunk/test/lang/cpp/class_static/TestStaticVariables.py lldb/trunk/test/lang/cpp/diamond/TestDiamond.py lldb/trunk/test/lang/cpp/namespace/TestNamespace.py lldb/trunk/test/lang/cpp/scope/TestCppScope.py lldb/trunk/test/lang/cpp/wchar_t/TestCxxWCharT.py Modified: lldb/trunk/test/functionalities/breakpoint/cpp/TestCPPBreakpointLocations.py URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/breakpoint/cpp/TestCPPBreakpointLocations.py?rev=247455&r1=247454&r2=247455&view=diff ============================================================================== --- lldb/trunk/test/functionalities/breakpoint/cpp/TestCPPBreakpointLocations.py (original) +++ lldb/trunk/test/functionalities/breakpoint/cpp/TestCPPBreakpointLocations.py Fri Sep 11 14:59:39 2015 @@ -19,6 +19,7 @@ class TestCPPBreakpointLocations(TestBas self.breakpoint_id_tests () @dwarf_test + @expectedFailureWindows("llvm.org/pr24764") def test_with_dwarf (self): self.buildDwarf () self.breakpoint_id_tests () Modified: lldb/trunk/test/lang/c/global_variables/TestGlobalVariables.py URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/c/global_variables/TestGlobalVariables.py?rev=247455&r1=247454&r2=247455&view=diff ============================================================================== --- lldb/trunk/test/lang/c/global_variables/TestGlobalVariables.py (original) +++ lldb/trunk/test/lang/c/global_variables/TestGlobalVariables.py Fri Sep 11 14:59:39 2015 @@ -18,6 +18,7 @@ class GlobalVariablesTestCase(TestBase): self.global_variables() @dwarf_test + @expectedFailureWindows("llvm.org/pr24764") def test_with_dwarf(self): """Test 'frame variable --scope --no-args' which omits args and shows scopes.""" self.buildDwarf() Modified: lldb/trunk/test/lang/c/struct_types/TestStructTypes.py URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/c/struct_types/TestStructTypes.py?rev=247455&r1=247454&r2=247455&view=diff ============================================================================== --- lldb/trunk/test/lang/c/struct_types/TestStructTypes.py (original) +++ lldb/trunk/test/lang/c/struct_types/TestStructTypes.py Fri Sep 11 14:59:39 2015 @@ -1,3 +1,3 @@ import lldbinline -lldbinline.MakeInlineTest(__file__, globals()) +lldbinline.MakeInlineTest(__file__, globals(), [lldbtest.expectedFailureWindows("llvm.org/pr24764")] ) Modified: lldb/trunk/test/lang/cpp/class_static/TestStaticVariables.py URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/class_static/TestStaticVariables.py?rev=247455&r1=247454&r2=247455&view=diff ============================================================================== --- lldb/trunk/test/lang/cpp/class_static/TestStaticVariables.py (original) +++ lldb/trunk/test/lang/cpp/class_static/TestStaticVariables.py Fri Sep 11 14:59:39 2015 @@ -20,6 +20,7 @@ class StaticVariableTestCase(TestBase): self.buildDsym() self.static_variable_commands() + @expectedFailureWindows("llvm.org/pr24764") @dwarf_test def test_with_dwarf_and_run_command(self): """Test that file and class static variables display correctly.""" Modified: lldb/trunk/test/lang/cpp/diamond/TestDiamond.py URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/diamond/TestDiamond.py?rev=247455&r1=247454&r2=247455&view=diff ============================================================================== --- lldb/trunk/test/lang/cpp/diamond/TestDiamond.py (original) +++ lldb/trunk/test/lang/cpp/diamond/TestDiamond.py Fri Sep 11 14:59:39 2015 @@ -17,6 +17,7 @@ class CPPTestDiamondInheritance(TestBase self.diamong_inheritace() @dwarf_test + @expectedFailureWindows("llvm.org/pr24764") def test_with_dwarf_and_run_command(self): """Test that virtual base classes work in when SBValue objects are used to explore the variable value""" self.buildDwarf() Modified: lldb/trunk/test/lang/cpp/namespace/TestNamespace.py URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/namespace/TestNamespace.py?rev=247455&r1=247454&r2=247455&view=diff ============================================================================== --- lldb/trunk/test/lang/cpp/namespace/TestNamespace.py (original) +++ lldb/trunk/test/lang/cpp/namespace/TestNamespace.py Fri Sep 11 14:59:39 2015 @@ -21,6 +21,7 @@ class NamespaceTestCase(TestBase): self.namespace_variable_commands() # rdar://problem/8668674 + @expectedFailureWindows("llvm.org/pr24764") @dwarf_test def test_with_dwarf_and_run_command(self): """Test that anonymous and named namespace variables display correctly.""" Modified: lldb/trunk/test/lang/cpp/scope/TestCppScope.py URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/scope/TestCppScope.py?rev=247455&r1=247454&r2=247455&view=diff ============================================================================== --- lldb/trunk/test/lang/cpp/scope/TestCppScope.py (original) +++ lldb/trunk/test/lang/cpp/scope/TestCppScope.py Fri Sep 11 14:59:39 2015 @@ -17,6 +17,7 @@ class TestCppScopes(TestBase): self.check() @expectedFailureDarwin + @expectedFailureWindows("llvm.org/pr24764") @dwarf_test def test_with_dwarf_and_run_command(self): self.buildDwarf() Modified: lldb/trunk/test/lang/cpp/wchar_t/TestCxxWCharT.py URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/wchar_t/TestCxxWCharT.py?rev=247455&r1=247454&r2=247455&view=diff ============================================================================== --- lldb/trunk/test/lang/cpp/wchar_t/TestCxxWCharT.py (original) +++ lldb/trunk/test/lang/cpp/wchar_t/TestCxxWCharT.py Fri Sep 11 14:59:39 2015 @@ -21,6 +21,7 @@ class CxxWCharTTestCase(TestBase): self.wchar_t() @dwarf_test + @expectedFailureWindows("llvm.org/pr24764") def test_with_dwarf(self): """Test that C++ supports wchar_t correctly.""" self.buildDwarf() _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits