diff options
Diffstat (limited to 'lldb/test/expression_command')
3 files changed, 6 insertions, 0 deletions
diff --git a/lldb/test/expression_command/call-function/TestCallStdStringFunction.py b/lldb/test/expression_command/call-function/TestCallStdStringFunction.py index 38d73ea4b6e..e9f23da0a84 100644 --- a/lldb/test/expression_command/call-function/TestCallStdStringFunction.py +++ b/lldb/test/expression_command/call-function/TestCallStdStringFunction.py @@ -19,11 +19,13 @@ class ExprCommandCallFunctionTestCase(TestBase): '// Please test these expressions while stopped at this line:') @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") + @dsym_test def test_with_dsym(self): """Test calling std::String member function.""" self.buildDsym() self.call_function() + @dwarf_test def test_with_dwarf(self): """Test calling std::String member function.""" self.buildDsym() diff --git a/lldb/test/expression_command/formatters/TestFormatters.py b/lldb/test/expression_command/formatters/TestFormatters.py index 9e4246f4887..780f74ccd35 100644 --- a/lldb/test/expression_command/formatters/TestFormatters.py +++ b/lldb/test/expression_command/formatters/TestFormatters.py @@ -19,11 +19,13 @@ class ExprFormattersTestCase(TestBase): '// Stop here') @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") + @dsym_test def test_with_dsym(self): """Test expr + formatters for good interoperability.""" self.buildDsym() self.do_my_test() + @dwarf_test def test_with_dwarf(self): """Test expr + formatters for good interoperability.""" self.buildDsym() diff --git a/lldb/test/expression_command/two-files/TestObjCTypeQueryFromOtherCompileUnit.py b/lldb/test/expression_command/two-files/TestObjCTypeQueryFromOtherCompileUnit.py index 3156e6e2c8a..3a516cdf4f1 100644 --- a/lldb/test/expression_command/two-files/TestObjCTypeQueryFromOtherCompileUnit.py +++ b/lldb/test/expression_command/two-files/TestObjCTypeQueryFromOtherCompileUnit.py @@ -20,11 +20,13 @@ class ObjCTypeQueryTestCase(TestBase): "// Set breakpoint here, then do 'expr (NSArray*)array_token'.") @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") + @dsym_test def test_with_dsym(self): """The expression parser's type search should be wider than the current compilation unit.""" self.buildDsym() self.type_query_from_other_cu() + @dwarf_test def test_with_dwarf(self): """The expression parser's type search should be wider than the current compilation unit.""" self.buildDwarf() |