diff options
-rw-r--r-- | lldb/test/array_types/TestArrayTypes.py | 2 | ||||
-rw-r--r-- | lldb/test/bitfields/TestBitfields.py | 2 | ||||
-rw-r--r-- | lldb/test/class_types/TestClassTypes.py | 2 | ||||
-rw-r--r-- | lldb/test/command_source/TestCommandSource.py | 2 | ||||
-rw-r--r-- | lldb/test/dead-strip/TestDeadStrip.py | 2 | ||||
-rw-r--r-- | lldb/test/enum_types/TestEnumTypes.py | 2 | ||||
-rw-r--r-- | lldb/test/example/TestSequenceFunctions.py | 2 | ||||
-rw-r--r-- | lldb/test/function_types/TestFunctionTypes.py | 2 | ||||
-rw-r--r-- | lldb/test/global_variables/TestGlobalVariables.py | 2 | ||||
-rw-r--r-- | lldb/test/hello_world/TestHelloWorld.py | 2 | ||||
-rw-r--r-- | lldb/test/help/TestHelp.py | 2 | ||||
-rw-r--r-- | lldb/test/load_unload/TestLoadUnload.py | 2 | ||||
-rw-r--r-- | lldb/test/macosx/universal/TestUniversal.py | 2 | ||||
-rw-r--r-- | lldb/test/order/TestOrderFile.py | 2 | ||||
-rw-r--r-- | lldb/test/persistent_variables/TestPersistentVariables.py | 2 | ||||
-rw-r--r-- | lldb/test/set_values/TestSetValues.py | 2 | ||||
-rw-r--r-- | lldb/test/stl/TestSTL.py | 2 | ||||
-rw-r--r-- | lldb/test/struct_types/TestStructTypes.py | 2 | ||||
-rw-r--r-- | lldb/test/unsigned_types/TestUnsignedTypes.py | 2 |
19 files changed, 19 insertions, 19 deletions
diff --git a/lldb/test/array_types/TestArrayTypes.py b/lldb/test/array_types/TestArrayTypes.py index 6b12c526844..14bc7b9810d 100644 --- a/lldb/test/array_types/TestArrayTypes.py +++ b/lldb/test/array_types/TestArrayTypes.py @@ -5,7 +5,7 @@ import unittest2 import lldb from lldbtest import * -class TestArrayTypes(TestBase): +class ArrayTypesTestCase(TestBase): mydir = "array_types" diff --git a/lldb/test/bitfields/TestBitfields.py b/lldb/test/bitfields/TestBitfields.py index ca88263a4c2..ffd5980967b 100644 --- a/lldb/test/bitfields/TestBitfields.py +++ b/lldb/test/bitfields/TestBitfields.py @@ -5,7 +5,7 @@ import unittest2 import lldb from lldbtest import * -class TestBitfields(TestBase): +class BitfieldsTestCase(TestBase): mydir = "bitfields" diff --git a/lldb/test/class_types/TestClassTypes.py b/lldb/test/class_types/TestClassTypes.py index 5d6366009c7..706674ef63b 100644 --- a/lldb/test/class_types/TestClassTypes.py +++ b/lldb/test/class_types/TestClassTypes.py @@ -5,7 +5,7 @@ import unittest2 import lldb from lldbtest import * -class TestClassTypes(TestBase): +class ClassTypesTestCase(TestBase): mydir = "class_types" diff --git a/lldb/test/command_source/TestCommandSource.py b/lldb/test/command_source/TestCommandSource.py index 1a78a7f4285..b7ae947c5ce 100644 --- a/lldb/test/command_source/TestCommandSource.py +++ b/lldb/test/command_source/TestCommandSource.py @@ -9,7 +9,7 @@ import unittest2 import lldb from lldbtest import * -class TestCommandSource(TestBase): +class CommandSourceTestCase(TestBase): mydir = "command_source" diff --git a/lldb/test/dead-strip/TestDeadStrip.py b/lldb/test/dead-strip/TestDeadStrip.py index b0218320a6c..8357ff13743 100644 --- a/lldb/test/dead-strip/TestDeadStrip.py +++ b/lldb/test/dead-strip/TestDeadStrip.py @@ -7,7 +7,7 @@ import unittest2 import lldb from lldbtest import * -class TestDeadStrip(TestBase): +class DeadStripTestCase(TestBase): mydir = "dead-strip" diff --git a/lldb/test/enum_types/TestEnumTypes.py b/lldb/test/enum_types/TestEnumTypes.py index b8831b58390..5c22a28e196 100644 --- a/lldb/test/enum_types/TestEnumTypes.py +++ b/lldb/test/enum_types/TestEnumTypes.py @@ -5,7 +5,7 @@ import unittest2 import lldb from lldbtest import * -class TestEnumTypes(TestBase): +class EnumTypesTestCase(TestBase): mydir = "enum_types" diff --git a/lldb/test/example/TestSequenceFunctions.py b/lldb/test/example/TestSequenceFunctions.py index 29ebfe6cefe..e9bfd6a27ee 100644 --- a/lldb/test/example/TestSequenceFunctions.py +++ b/lldb/test/example/TestSequenceFunctions.py @@ -4,7 +4,7 @@ import random import unittest import traceback -class TestSequenceFunctions(unittest.TestCase): +class SequenceFunctionsTestCase(unittest.TestCase): def setUp(self): #traceback.print_stack() diff --git a/lldb/test/function_types/TestFunctionTypes.py b/lldb/test/function_types/TestFunctionTypes.py index 81fb52491db..25f1b7738e8 100644 --- a/lldb/test/function_types/TestFunctionTypes.py +++ b/lldb/test/function_types/TestFunctionTypes.py @@ -5,7 +5,7 @@ import unittest2 import lldb from lldbtest import * -class TestFunctionTypes(TestBase): +class FunctionTypesTestCase(TestBase): mydir = "function_types" diff --git a/lldb/test/global_variables/TestGlobalVariables.py b/lldb/test/global_variables/TestGlobalVariables.py index 088a82d6579..b17b4eebb3d 100644 --- a/lldb/test/global_variables/TestGlobalVariables.py +++ b/lldb/test/global_variables/TestGlobalVariables.py @@ -5,7 +5,7 @@ import unittest2 import lldb from lldbtest import * -class TestGlobalVariables(TestBase): +class GlobalVariablesTestCase(TestBase): mydir = "global_variables" diff --git a/lldb/test/hello_world/TestHelloWorld.py b/lldb/test/hello_world/TestHelloWorld.py index 82e3b97fda6..b7f7c15b77f 100644 --- a/lldb/test/hello_world/TestHelloWorld.py +++ b/lldb/test/hello_world/TestHelloWorld.py @@ -5,7 +5,7 @@ import unittest2 import lldb from lldbtest import * -class TestHelloWorld(TestBase): +class HelloWorldTestCase(TestBase): mydir = "hello_world" diff --git a/lldb/test/help/TestHelp.py b/lldb/test/help/TestHelp.py index e73be7789a4..8f4f8564df3 100644 --- a/lldb/test/help/TestHelp.py +++ b/lldb/test/help/TestHelp.py @@ -9,7 +9,7 @@ import unittest2 import lldb from lldbtest import * -class TestHelpCommand(TestBase): +class HelpCommandTestCase(TestBase): mydir = "help" diff --git a/lldb/test/load_unload/TestLoadUnload.py b/lldb/test/load_unload/TestLoadUnload.py index cdd26487eca..6fa8f98fff3 100644 --- a/lldb/test/load_unload/TestLoadUnload.py +++ b/lldb/test/load_unload/TestLoadUnload.py @@ -7,7 +7,7 @@ import unittest2 import lldb from lldbtest import * -class TestLoadUnload(TestBase): +class LoadUnloadTestCase(TestBase): mydir = "load_unload" diff --git a/lldb/test/macosx/universal/TestUniversal.py b/lldb/test/macosx/universal/TestUniversal.py index 98eaa6e2a10..6a93e4aa714 100644 --- a/lldb/test/macosx/universal/TestUniversal.py +++ b/lldb/test/macosx/universal/TestUniversal.py @@ -5,7 +5,7 @@ import unittest2 import lldb from lldbtest import * -class TestUniversal(TestBase): +class UniversalTestCase(TestBase): mydir = "macosx/universal" diff --git a/lldb/test/order/TestOrderFile.py b/lldb/test/order/TestOrderFile.py index d9ad6997dc8..c02b88794f2 100644 --- a/lldb/test/order/TestOrderFile.py +++ b/lldb/test/order/TestOrderFile.py @@ -8,7 +8,7 @@ import unittest2 import lldb from lldbtest import * -class TestOrderFile(TestBase): +class OrderFileTestCase(TestBase): mydir = "order" diff --git a/lldb/test/persistent_variables/TestPersistentVariables.py b/lldb/test/persistent_variables/TestPersistentVariables.py index b30003ef05e..9f1ea77703a 100644 --- a/lldb/test/persistent_variables/TestPersistentVariables.py +++ b/lldb/test/persistent_variables/TestPersistentVariables.py @@ -7,7 +7,7 @@ import unittest2 import lldb from lldbtest import * -class TestPersistentVariables(TestBase): +class PersistentVariablesTestCase(TestBase): mydir = "persistent_variables" diff --git a/lldb/test/set_values/TestSetValues.py b/lldb/test/set_values/TestSetValues.py index c1a962188eb..7c3533c323e 100644 --- a/lldb/test/set_values/TestSetValues.py +++ b/lldb/test/set_values/TestSetValues.py @@ -5,7 +5,7 @@ import unittest2 import lldb from lldbtest import * -class TestSetValues(TestBase): +class SetValuesTestCase(TestBase): mydir = "set_values" diff --git a/lldb/test/stl/TestSTL.py b/lldb/test/stl/TestSTL.py index 0d1f69cbd8c..402126eafe2 100644 --- a/lldb/test/stl/TestSTL.py +++ b/lldb/test/stl/TestSTL.py @@ -7,7 +7,7 @@ import unittest2 import lldb from lldbtest import * -class TestSTL(TestBase): +class STLTestCase(TestBase): mydir = "stl" diff --git a/lldb/test/struct_types/TestStructTypes.py b/lldb/test/struct_types/TestStructTypes.py index 2d2297a8097..e7fc6726d5c 100644 --- a/lldb/test/struct_types/TestStructTypes.py +++ b/lldb/test/struct_types/TestStructTypes.py @@ -9,7 +9,7 @@ import unittest2 import lldb from lldbtest import * -class TestStructTypes(TestBase): +class StructTypesTestCase(TestBase): mydir = "struct_types" diff --git a/lldb/test/unsigned_types/TestUnsignedTypes.py b/lldb/test/unsigned_types/TestUnsignedTypes.py index 44147a08067..af3984d9547 100644 --- a/lldb/test/unsigned_types/TestUnsignedTypes.py +++ b/lldb/test/unsigned_types/TestUnsignedTypes.py @@ -8,7 +8,7 @@ import unittest2 import lldb from lldbtest import * -class TestUnsignedTypes(TestBase): +class UnsignedTypesTestCase(TestBase): mydir = "unsigned_types" |