diff options
author | Davide Italiano <davide@freebsd.org> | 2019-04-25 22:53:10 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2019-04-25 22:53:10 +0000 |
commit | 2d6e156e403a48da576550c653d45c24f950f157 (patch) | |
tree | e4beba1dfaaf42653b533ec99f635dc872417412 /lldb/packages/Python/lldbsuite/test/lang/cpp | |
parent | 5fe85a003f6b6ba3c2b83c319d1c160ca7af7c7c (diff) | |
download | bcm5719-llvm-2d6e156e403a48da576550c653d45c24f950f157.tar.gz bcm5719-llvm-2d6e156e403a48da576550c653d45c24f950f157.zip |
[TestTemplateFunction] Add a missing debug info variant.
llvm-svn: 359249
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/template-function/TestTemplateFunctions.py | 2 |
1 files changed, 1 insertions, 1 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 0e2c388a46c..6c9a0ac35f4 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 @@ -27,6 +27,6 @@ class TemplateFunctionsTestCase(TestBase): self.do_test_template_function(True) @skipIfWindows - @expectedFailureAll(debug_info=["dwarf", "gmodules"]) + @expectedFailureAll(debug_info=["dwarf", "gmodules", "dwo"]) def test_template_function_without_cast(self): self.do_test_template_function(False) |