From 055d0c961b7feee0d875cd791afa2451d98980dc Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Mon, 12 Dec 2011 22:26:27 +0000 Subject: [PATCH] Rename some test methods, with no functionality change. llvm-svn: 146429 --- lldb/test/lang/objc/real-definition/TestRealDefinition.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lldb/test/lang/objc/real-definition/TestRealDefinition.py b/lldb/test/lang/objc/real-definition/TestRealDefinition.py index e47b229c8a51..52c3b3c60455 100644 --- a/lldb/test/lang/objc/real-definition/TestRealDefinition.py +++ b/lldb/test/lang/objc/real-definition/TestRealDefinition.py @@ -9,22 +9,22 @@ class TestRealDefinition(TestBase): mydir = os.path.join("lang", "objc", "real-definition") - def test_expr_with_dsym(self): + def test_frame_var_after_stop_at_interface_with_dsym(self): """Test that we can find the implementation for an objective C type""" self.buildDsym() self.stop_at_interface() - def test_expr_with_dwarf(self): + def test_frame_var_after_stop_at_interface_with_dwarf(self): """Test that we can find the implementation for an objective C type""" self.buildDwarf() self.stop_at_interface() - def test_frame_variable_with_dsym(self): + def test_frame_var_after_stop_at_implementation_with_dsym(self): """Test that we can find the implementation for an objective C type""" self.buildDsym() self.stop_at_implementation() - def test_frame_variable_with_dwarf(self): + def test_frame_var_after_stop_at_implementation_with_dwarf(self): """Test that we can find the implementation for an objective C type""" self.buildDwarf() self.stop_at_implementation()