summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test
diff options
context:
space:
mode:
authorStella Stamenova <stilis@microsoft.com>2019-07-01 22:12:55 +0000
committerStella Stamenova <stilis@microsoft.com>2019-07-01 22:12:55 +0000
commit86e4d7ea35eee5329e960d20dedda02ff9968aad (patch)
treeec46faa3514d1ec06f376f215cacfb5a9ed99aea /lldb/packages/Python/lldbsuite/test
parent40c08052a55d94e499c4ffb5f467c003331be333 (diff)
downloadbcm5719-llvm-86e4d7ea35eee5329e960d20dedda02ff9968aad.tar.gz
bcm5719-llvm-86e4d7ea35eee5329e960d20dedda02ff9968aad.zip
[lldb] [lldbsuite] Use a unique class name for TestValueVarUpdate
It looks like when this test was added, it was based on TestHelloWorld and it ended up with the same class name. This is an issue because the logs associated with the tests use the class name as the identifier for the file and if two tests have the same name their logs overwrite each other. On non-windows, this just means we lose one of the logs, but on Windows this means that one of the tests will fail occasionally because the file are locked by the other test. llvm-svn: 364860
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r--lldb/packages/Python/lldbsuite/test/python_api/value_var_update/TestValueVarUpdate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/python_api/value_var_update/TestValueVarUpdate.py b/lldb/packages/Python/lldbsuite/test/python_api/value_var_update/TestValueVarUpdate.py
index a83fd6e1239..866d2a541e6 100644
--- a/lldb/packages/Python/lldbsuite/test/python_api/value_var_update/TestValueVarUpdate.py
+++ b/lldb/packages/Python/lldbsuite/test/python_api/value_var_update/TestValueVarUpdate.py
@@ -13,7 +13,7 @@ from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil
-class HelloWorldTestCase(TestBase):
+class ValueVarUpdateTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
OpenPOWER on IntegriCloud