commit | 291a0b89fa3f5929371eb0cf83e01b2573941948 | [log] [tgz] |
---|---|---|
author | Jonas Devlieghere <jonas@devlieghere.com> | Thu May 02 17:35:18 2019 +0000 |
committer | Jonas Devlieghere <jonas@devlieghere.com> | Thu May 02 17:35:18 2019 +0000 |
tree | ac9605d4681af12092f7657608688e10ff191cd1 | |
parent | fa3c328c510419ce475facfe3eb8e6d0cd91fb51 [diff] |
[test] TestSharedPtr -> TestSharedPtrDbgInfoContent Two tests cannot share the same name, because they will generate an identical trace file. When that happens, this can lead to a race condition where dotest fails when trying to move both files into the trace directory, because the file has already been moved. Additionally, the trace will have been overwritten by the test that finishes last. llvm-svn: 359807
diff --git a/lldb/packages/Python/lldbsuite/test/expression_command/import-std-module/shared_ptr-dbg-info-content/TestSharedPtrDbgInfoContent.py b/lldb/packages/Python/lldbsuite/test/expression_command/import-std-module/shared_ptr-dbg-info-content/TestSharedPtrDbgInfoContent.py index 1e4309f..028798f 100644 --- a/lldb/packages/Python/lldbsuite/test/expression_command/import-std-module/shared_ptr-dbg-info-content/TestSharedPtrDbgInfoContent.py +++ b/lldb/packages/Python/lldbsuite/test/expression_command/import-std-module/shared_ptr-dbg-info-content/TestSharedPtrDbgInfoContent.py
@@ -6,7 +6,7 @@ from lldbsuite.test.lldbtest import * from lldbsuite.test import lldbutil -class TestSharedPtr(TestBase): +class TestSharedPtrDbgInfoContent(TestBase): mydir = TestBase.compute_mydir(__file__)