Skip test introduced in r359140 on windows
authorFrederic Riss <friss@apple.com>
Wed, 24 Apr 2019 22:00:01 +0000 (22:00 +0000)
committerFrederic Riss <friss@apple.com>
Wed, 24 Apr 2019 22:00:01 +0000 (22:00 +0000)
Not sure what is or is not supposed to work on Windows and I have
no way to investigate this.

llvm-svn: 359145

lldb/packages/Python/lldbsuite/test/lang/cpp/template-function/TestTemplateFunctions.py

index 14ebe3b..0e2c388 100644 (file)
@@ -22,9 +22,11 @@ class TemplateFunctionsTestCase(TestBase):
         self.assertTrue(expr_result.IsValid())
         self.assertEqual(expr_result.GetValue(), "42")
 
+    @skipIfWindows
     def test_template_function_with_cast(self):
         self.do_test_template_function(True)
 
+    @skipIfWindows
     @expectedFailureAll(debug_info=["dwarf", "gmodules"])
     def test_template_function_without_cast(self):
         self.do_test_template_function(False)