Use a better name for the abstract base class which contains the generic_type_tester()
method.  Renamed it to be AbstractBase.py, which contains the GenericTester class that
both IntegerTypesTestCase and FloatTypesTestCase inherit from.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@114926 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/types/TestBasicTypes.py b/test/types/AbstractBase.py
similarity index 98%
rename from test/types/TestBasicTypes.py
rename to test/types/AbstractBase.py
index bb3b153..f80e0b2 100644
--- a/test/types/TestBasicTypes.py
+++ b/test/types/AbstractBase.py
@@ -10,7 +10,7 @@
 def Msg(var, val):
     return "'frame variable %s' matches the compiler's output: %s" % (var, val)
 
-class AbstractBase(TestBase):
+class GenericTester(TestBase):
 
     # This is the pattern by design to match the " var = 'value'" output from
     # printf() stmts (see basic_type.cpp).
diff --git a/test/types/TestFloatTypes.py b/test/types/TestFloatTypes.py
index 270fe7d..025c8bc 100644
--- a/test/types/TestFloatTypes.py
+++ b/test/types/TestFloatTypes.py
@@ -2,11 +2,11 @@
 Test that variables of floating point types are displayed correctly.
 """
 
-import TestBasicTypes
+import AbstractBase
 import unittest2
 import lldb
 
-class FloatTypesTestCase(TestBasicTypes.AbstractBase):
+class FloatTypesTestCase(AbstractBase.GenericTester):
 
     mydir = "types"
 
diff --git a/test/types/TestIntegerTypes.py b/test/types/TestIntegerTypes.py
index 7192777..a7ac3fc 100644
--- a/test/types/TestIntegerTypes.py
+++ b/test/types/TestIntegerTypes.py
@@ -2,11 +2,11 @@
 Test that variables of integer basic types are displayed correctly.
 """
 
-import TestBasicTypes
+import AbstractBase
 import unittest2
 import lldb
 
-class IntegerTypesTestCase(TestBasicTypes.AbstractBase):
+class IntegerTypesTestCase(AbstractBase.GenericTester):
 
     mydir = "types"