diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2018-06-24 10:36:44 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2018-06-24 10:36:44 +0000 |
commit | 8fbb1fc22944cb33da4a1d5bec96a7bd9831d608 (patch) | |
tree | 1383feabdf80987bf58c8a88f924e04327656cc6 /lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until | |
parent | 24bd63c462bc04fa179ce5d775746fe99fc9d156 (diff) | |
download | bcm5719-llvm-8fbb1fc22944cb33da4a1d5bec96a7bd9831d608.tar.gz bcm5719-llvm-8fbb1fc22944cb33da4a1d5bec96a7bd9831d608.zip |
Make testcase classnames unique
Filenames with test results contain only the class name which makes it more
difficult to find it if the same class name is present in multiple *.py files.
packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/TestStepNoDebug.py
-class ReturnValueTestCase(TestBase):
+class StepAvoidsNoDebugTestCase(TestBase):
as ReturnValueTestCase is already present in:
packages/Python/lldbsuite/test/functionalities/return-value/TestReturnValue.py
packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/TestCrashDuringStep.py
-class CreateDuringStepTestCase(TestBase):
+class CrashDuringStepTestCase(TestBase):
as CreateDuringStepTestCase is already present in:
packages/Python/lldbsuite/test/functionalities/thread/create_during_step/TestCreateDuringStep.py
packages/Python/lldbsuite/test/functionalities/thread/step_until/TestStepUntil.py
-class TestCStepping(TestBase):
+class StepUntilTestCase(TestBase):
as TestCStepping is already present in:
packages/Python/lldbsuite/test/lang/c/stepping/TestStepAndBreakpoints.py
llvm-svn: 335431
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/TestStepUntil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/TestStepUntil.py b/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/TestStepUntil.py index a246b9151e6..3bace578063 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/TestStepUntil.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/TestStepUntil.py @@ -11,7 +11,7 @@ from lldbsuite.test.lldbtest import * from lldbsuite.test import lldbutil -class TestCStepping(TestBase): +class StepUntilTestCase(TestBase): mydir = TestBase.compute_mydir(__file__) |