diff options
author | Frederic Riss <friss@apple.com> | 2019-04-24 22:00:01 +0000 |
---|---|---|
committer | Frederic Riss <friss@apple.com> | 2019-04-24 22:00:01 +0000 |
commit | 2f496763215848f625becc540c097a37502e31fe (patch) | |
tree | b0cc9556dc31e5bd65128b6ef1c8ba410d76a8b8 /lldb/packages/Python/lldbsuite/test/lang/cpp/template-function/TestTemplateFunctions.py | |
parent | 526633deea863d4f08d80267c5c8c94dcad02382 (diff) | |
download | bcm5719-llvm-2f496763215848f625becc540c097a37502e31fe.tar.gz bcm5719-llvm-2f496763215848f625becc540c097a37502e31fe.zip |
Skip test introduced in r359140 on windows
Not sure what is or is not supposed to work on Windows and I have
no way to investigate this.
llvm-svn: 359145
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp/template-function/TestTemplateFunctions.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/template-function/TestTemplateFunctions.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/template-function/TestTemplateFunctions.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/template-function/TestTemplateFunctions.py index 14ebe3b316f..0e2c388a46c 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/template-function/TestTemplateFunctions.py +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/template-function/TestTemplateFunctions.py @@ -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) |