diff options
Diffstat (limited to 'lldb/test/lang/objc/foundation/TestSymbolTable.py')
-rw-r--r-- | lldb/test/lang/objc/foundation/TestSymbolTable.py | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/lldb/test/lang/objc/foundation/TestSymbolTable.py b/lldb/test/lang/objc/foundation/TestSymbolTable.py index 70ca088d294..0d238160214 100644 --- a/lldb/test/lang/objc/foundation/TestSymbolTable.py +++ b/lldb/test/lang/objc/foundation/TestSymbolTable.py @@ -25,21 +25,9 @@ class FoundationSymtabTestCase(TestBase): ] @python_api_test - @dsym_test - def test_with_dsym_and_python_api(self): - """Test symbol table access with Python APIs.""" - self.buildDsym() - self.symtab_access_python() - - @python_api_test - @dwarf_test - def test_with_dwarf_and_python_api(self): - """Test symbol table access with Python APIs.""" - self.buildDwarf() - self.symtab_access_python() - - def symtab_access_python(self): + def test_with_python_api(self): """Test symbol table access with Python APIs.""" + self.build() exe = os.path.join(os.getcwd(), "a.out") self.runCmd("file " + exe, CURRENT_EXECUTABLE_SET) |