forked from OSchip/llvm-project
[lldbsuite] Each lldb suite test must have a unique class name
A couple of new tests have been added that use existing class names. This causes failures on Windows if the tests run at the same time and on any platform it results in the logs being overwritten. llvm-svn: 347717
This commit is contained in:
parent
68ed93d252
commit
fdfcd719a2
|
@ -7,7 +7,7 @@ from lldbsuite.test.lldbtest import *
|
|||
from lldbsuite.test import lldbutil
|
||||
|
||||
|
||||
class ExprXValuePrintingTestCase(TestBase):
|
||||
class ScopedEnumType(TestBase):
|
||||
|
||||
mydir = TestBase.compute_mydir(__file__)
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ from lldbsuite.test.lldbtest import *
|
|||
from lldbsuite.test import lldbutil
|
||||
|
||||
|
||||
class PythonSynthDataFormatterTestCase(TestBase):
|
||||
class DataFormatterVarScriptFormatting(TestBase):
|
||||
|
||||
mydir = TestBase.compute_mydir(__file__)
|
||||
|
||||
|
|
Loading…
Reference in New Issue