diff options
author | Stella Stamenova <stilis@microsoft.com> | 2018-11-27 22:18:02 +0000 |
---|---|---|
committer | Stella Stamenova <stilis@microsoft.com> | 2018-11-27 22:18:02 +0000 |
commit | fdfcd719a2b64d6c43c4d993b6efd5928dbe9648 (patch) | |
tree | e53574224302b91766644a10883e63abc93c16ba /lldb/packages/Python/lldbsuite/test | |
parent | 68ed93d2528f28e04c8b96dde59225d4cc87ff3a (diff) | |
download | bcm5719-llvm-fdfcd719a2b64d6c43c4d993b6efd5928dbe9648.tar.gz bcm5719-llvm-fdfcd719a2b64d6c43c4d993b6efd5928dbe9648.zip |
[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
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
2 files changed, 2 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/expression_command/radar_43822994/TestScopedEnumType.py b/lldb/packages/Python/lldbsuite/test/expression_command/radar_43822994/TestScopedEnumType.py index c900ba7979b..028047fc46b 100644 --- a/lldb/packages/Python/lldbsuite/test/expression_command/radar_43822994/TestScopedEnumType.py +++ b/lldb/packages/Python/lldbsuite/test/expression_command/radar_43822994/TestScopedEnumType.py @@ -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__) diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/TestDataFormatterVarScriptFormatting.py b/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/TestDataFormatterVarScriptFormatting.py index d3c04afe91e..670edad37f9 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/TestDataFormatterVarScriptFormatting.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/TestDataFormatterVarScriptFormatting.py @@ -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__) |