[lldb] [lldbsuite] Use a unique class name for TestBacktraceAll
authorStella Stamenova <stilis@microsoft.com>
Mon, 1 Jul 2019 18:13:20 +0000 (18:13 +0000)
committerStella Stamenova <stilis@microsoft.com>
Mon, 1 Jul 2019 18:13:20 +0000 (18:13 +0000)
It looks like when this test was added, it was based on TestBreakAfterJoin 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: 364826

lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/TestBacktraceAll.py

index e202626..1892885 100644 (file)
@@ -11,7 +11,7 @@ from lldbsuite.test.lldbtest import *
 from lldbsuite.test import lldbutil
 
 
-class BreakpointAfterJoinTestCase(TestBase):
+class BacktraceAllTestCase(TestBase):
 
     mydir = TestBase.compute_mydir(__file__)