Rename some test methods, with no functionality change.

llvm-svn: 146429
This commit is contained in:
Johnny Chen 2011-12-12 22:26:27 +00:00
parent 76e4bc4e26
commit 055d0c961b
1 changed files with 4 additions and 4 deletions

View File

@ -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()