[Lldb-commits] [lldb] r146429 - /lldb/trunk/test/lang/objc/real-definition/TestRealDefinition.py
Johnny Chen
johnny.chen at apple.com
Mon Dec 12 14:26:27 PST 2011
Author: johnny
Date: Mon Dec 12 16:26:27 2011
New Revision: 146429
URL: http://llvm.org/viewvc/llvm-project?rev=146429&view=rev
Log:
Rename some test methods, with no functionality change.
Modified:
lldb/trunk/test/lang/objc/real-definition/TestRealDefinition.py
Modified: lldb/trunk/test/lang/objc/real-definition/TestRealDefinition.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/objc/real-definition/TestRealDefinition.py?rev=146429&r1=146428&r2=146429&view=diff
==============================================================================
--- lldb/trunk/test/lang/objc/real-definition/TestRealDefinition.py (original)
+++ lldb/trunk/test/lang/objc/real-definition/TestRealDefinition.py Mon Dec 12 16:26:27 2011
@@ -9,22 +9,22 @@
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()
More information about the lldb-commits
mailing list