[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
This commit is contained in:
Stella Stamenova 2019-07-01 22:12:55 +00:00
parent 40c08052a5
commit 86e4d7ea35
1 changed files with 1 additions and 1 deletions

View File

@ -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__)