[Lldb-commits] [lldb] r118602 - in /lldb/trunk/test/types: TestFloatTypesExpr.py TestIntegerTypesExpr.py

Johnny Chen johnny.chen at apple.com
Tue Nov 9 10:49:57 PST 2010


Author: johnny
Date: Tue Nov  9 12:49:57 2010
New Revision: 118602

URL: http://llvm.org/viewvc/llvm-project?rev=118602&view=rev
Log:
We should make the class name of test cases which emphasize expression command
be different than the class name which uses frame variable command.

Modified:
    lldb/trunk/test/types/TestFloatTypesExpr.py
    lldb/trunk/test/types/TestIntegerTypesExpr.py

Modified: lldb/trunk/test/types/TestFloatTypesExpr.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/types/TestFloatTypesExpr.py?rev=118602&r1=118601&r2=118602&view=diff
==============================================================================
--- lldb/trunk/test/types/TestFloatTypesExpr.py (original)
+++ lldb/trunk/test/types/TestFloatTypesExpr.py Tue Nov  9 12:49:57 2010
@@ -7,7 +7,7 @@
 import lldb
 import sys
 
-class FloatTypesTestCase(AbstractBase.GenericTester):
+class FloatTypesExprTestCase(AbstractBase.GenericTester):
 
     mydir = "types"
 

Modified: lldb/trunk/test/types/TestIntegerTypesExpr.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/types/TestIntegerTypesExpr.py?rev=118602&r1=118601&r2=118602&view=diff
==============================================================================
--- lldb/trunk/test/types/TestIntegerTypesExpr.py (original)
+++ lldb/trunk/test/types/TestIntegerTypesExpr.py Tue Nov  9 12:49:57 2010
@@ -7,7 +7,7 @@
 import lldb
 import sys
 
-class IntegerTypesTestCase(AbstractBase.GenericTester):
+class IntegerTypesExprTestCase(AbstractBase.GenericTester):
 
     mydir = "types"
 





More information about the lldb-commits mailing list