Changed the test case class names to be noun-like instead of verb-like.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@112732 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/array_types/TestArrayTypes.py b/test/array_types/TestArrayTypes.py
index 6b12c52..14bc7b9 100644
--- a/test/array_types/TestArrayTypes.py
+++ b/test/array_types/TestArrayTypes.py
@@ -5,7 +5,7 @@
 import lldb
 from lldbtest import *
 
-class TestArrayTypes(TestBase):
+class ArrayTypesTestCase(TestBase):
 
     mydir = "array_types"
 
diff --git a/test/bitfields/TestBitfields.py b/test/bitfields/TestBitfields.py
index ca88263..ffd5980 100644
--- a/test/bitfields/TestBitfields.py
+++ b/test/bitfields/TestBitfields.py
@@ -5,7 +5,7 @@
 import lldb
 from lldbtest import *
 
-class TestBitfields(TestBase):
+class BitfieldsTestCase(TestBase):
 
     mydir = "bitfields"
 
diff --git a/test/class_types/TestClassTypes.py b/test/class_types/TestClassTypes.py
index 5d63660..706674e 100644
--- a/test/class_types/TestClassTypes.py
+++ b/test/class_types/TestClassTypes.py
@@ -5,7 +5,7 @@
 import lldb
 from lldbtest import *
 
-class TestClassTypes(TestBase):
+class ClassTypesTestCase(TestBase):
 
     mydir = "class_types"
 
diff --git a/test/command_source/TestCommandSource.py b/test/command_source/TestCommandSource.py
index 1a78a7f..b7ae947 100644
--- a/test/command_source/TestCommandSource.py
+++ b/test/command_source/TestCommandSource.py
@@ -9,7 +9,7 @@
 import lldb
 from lldbtest import *
 
-class TestCommandSource(TestBase):
+class CommandSourceTestCase(TestBase):
 
     mydir = "command_source"
 
diff --git a/test/dead-strip/TestDeadStrip.py b/test/dead-strip/TestDeadStrip.py
index b021832..8357ff1 100644
--- a/test/dead-strip/TestDeadStrip.py
+++ b/test/dead-strip/TestDeadStrip.py
@@ -7,7 +7,7 @@
 import lldb
 from lldbtest import *
 
-class TestDeadStrip(TestBase):
+class DeadStripTestCase(TestBase):
 
     mydir = "dead-strip"
 
diff --git a/test/enum_types/TestEnumTypes.py b/test/enum_types/TestEnumTypes.py
index b8831b5..5c22a28 100644
--- a/test/enum_types/TestEnumTypes.py
+++ b/test/enum_types/TestEnumTypes.py
@@ -5,7 +5,7 @@
 import lldb
 from lldbtest import *
 
-class TestEnumTypes(TestBase):
+class EnumTypesTestCase(TestBase):
 
     mydir = "enum_types"
 
diff --git a/test/example/TestSequenceFunctions.py b/test/example/TestSequenceFunctions.py
index 29ebfe6..e9bfd6a 100644
--- a/test/example/TestSequenceFunctions.py
+++ b/test/example/TestSequenceFunctions.py
@@ -4,7 +4,7 @@
 import unittest
 import traceback
 
-class TestSequenceFunctions(unittest.TestCase):
+class SequenceFunctionsTestCase(unittest.TestCase):
 
     def setUp(self):
         #traceback.print_stack()
diff --git a/test/function_types/TestFunctionTypes.py b/test/function_types/TestFunctionTypes.py
index 81fb524..25f1b77 100644
--- a/test/function_types/TestFunctionTypes.py
+++ b/test/function_types/TestFunctionTypes.py
@@ -5,7 +5,7 @@
 import lldb
 from lldbtest import *
 
-class TestFunctionTypes(TestBase):
+class FunctionTypesTestCase(TestBase):
 
     mydir = "function_types"
 
diff --git a/test/global_variables/TestGlobalVariables.py b/test/global_variables/TestGlobalVariables.py
index 088a82d..b17b4ee 100644
--- a/test/global_variables/TestGlobalVariables.py
+++ b/test/global_variables/TestGlobalVariables.py
@@ -5,7 +5,7 @@
 import lldb
 from lldbtest import *
 
-class TestGlobalVariables(TestBase):
+class GlobalVariablesTestCase(TestBase):
 
     mydir = "global_variables"
 
diff --git a/test/hello_world/TestHelloWorld.py b/test/hello_world/TestHelloWorld.py
index 82e3b97..b7f7c15 100644
--- a/test/hello_world/TestHelloWorld.py
+++ b/test/hello_world/TestHelloWorld.py
@@ -5,7 +5,7 @@
 import lldb
 from lldbtest import *
 
-class TestHelloWorld(TestBase):
+class HelloWorldTestCase(TestBase):
 
     mydir = "hello_world"
 
diff --git a/test/help/TestHelp.py b/test/help/TestHelp.py
index e73be77..8f4f856 100644
--- a/test/help/TestHelp.py
+++ b/test/help/TestHelp.py
@@ -9,7 +9,7 @@
 import lldb
 from lldbtest import *
 
-class TestHelpCommand(TestBase):
+class HelpCommandTestCase(TestBase):
 
     mydir = "help"
 
diff --git a/test/load_unload/TestLoadUnload.py b/test/load_unload/TestLoadUnload.py
index cdd2648..6fa8f98 100644
--- a/test/load_unload/TestLoadUnload.py
+++ b/test/load_unload/TestLoadUnload.py
@@ -7,7 +7,7 @@
 import lldb
 from lldbtest import *
 
-class TestLoadUnload(TestBase):
+class LoadUnloadTestCase(TestBase):
 
     mydir = "load_unload"
 
diff --git a/test/macosx/universal/TestUniversal.py b/test/macosx/universal/TestUniversal.py
index 98eaa6e..6a93e4a 100644
--- a/test/macosx/universal/TestUniversal.py
+++ b/test/macosx/universal/TestUniversal.py
@@ -5,7 +5,7 @@
 import lldb
 from lldbtest import *
 
-class TestUniversal(TestBase):
+class UniversalTestCase(TestBase):
 
     mydir = "macosx/universal"
 
diff --git a/test/order/TestOrderFile.py b/test/order/TestOrderFile.py
index d9ad699..c02b887 100644
--- a/test/order/TestOrderFile.py
+++ b/test/order/TestOrderFile.py
@@ -8,7 +8,7 @@
 import lldb
 from lldbtest import *
 
-class TestOrderFile(TestBase):
+class OrderFileTestCase(TestBase):
 
     mydir = "order"
 
diff --git a/test/persistent_variables/TestPersistentVariables.py b/test/persistent_variables/TestPersistentVariables.py
index b30003e..9f1ea77 100644
--- a/test/persistent_variables/TestPersistentVariables.py
+++ b/test/persistent_variables/TestPersistentVariables.py
@@ -7,7 +7,7 @@
 import lldb
 from lldbtest import *
 
-class TestPersistentVariables(TestBase):
+class PersistentVariablesTestCase(TestBase):
 
     mydir = "persistent_variables"
 
diff --git a/test/set_values/TestSetValues.py b/test/set_values/TestSetValues.py
index c1a9621..7c3533c 100644
--- a/test/set_values/TestSetValues.py
+++ b/test/set_values/TestSetValues.py
@@ -5,7 +5,7 @@
 import lldb
 from lldbtest import *
 
-class TestSetValues(TestBase):
+class SetValuesTestCase(TestBase):
 
     mydir = "set_values"
 
diff --git a/test/stl/TestSTL.py b/test/stl/TestSTL.py
index 0d1f69c..402126e 100644
--- a/test/stl/TestSTL.py
+++ b/test/stl/TestSTL.py
@@ -7,7 +7,7 @@
 import lldb
 from lldbtest import *
 
-class TestSTL(TestBase):
+class STLTestCase(TestBase):
 
     mydir = "stl"
 
diff --git a/test/struct_types/TestStructTypes.py b/test/struct_types/TestStructTypes.py
index 2d2297a..e7fc672 100644
--- a/test/struct_types/TestStructTypes.py
+++ b/test/struct_types/TestStructTypes.py
@@ -9,7 +9,7 @@
 import lldb
 from lldbtest import *
 
-class TestStructTypes(TestBase):
+class StructTypesTestCase(TestBase):
 
     mydir = "struct_types"
 
diff --git a/test/unsigned_types/TestUnsignedTypes.py b/test/unsigned_types/TestUnsignedTypes.py
index 44147a0..af3984d 100644
--- a/test/unsigned_types/TestUnsignedTypes.py
+++ b/test/unsigned_types/TestUnsignedTypes.py
@@ -8,7 +8,7 @@
 import lldb
 from lldbtest import *
 
-class TestUnsignedTypes(TestBase):
+class UnsignedTypesTestCase(TestBase):
 
     mydir = "unsigned_types"