diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-05-02 17:35:18 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-05-02 17:35:18 +0000 |
commit | 291a0b89fa3f5929371eb0cf83e01b2573941948 (patch) | |
tree | ac9605d4681af12092f7657608688e10ff191cd1 /lldb/packages/Python/lldbsuite/test/expression_command | |
parent | fa3c328c510419ce475facfe3eb8e6d0cd91fb51 (diff) | |
download | bcm5719-llvm-291a0b89fa3f5929371eb0cf83e01b2573941948.tar.gz bcm5719-llvm-291a0b89fa3f5929371eb0cf83e01b2573941948.zip |
[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
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/expression_command')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/expression_command/import-std-module/shared_ptr-dbg-info-content/TestSharedPtrDbgInfoContent.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 1e4309f6795..028798f72f3 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.decorators import * from lldbsuite.test.lldbtest import * from lldbsuite.test import lldbutil -class TestSharedPtr(TestBase): +class TestSharedPtrDbgInfoContent(TestBase): mydir = TestBase.compute_mydir(__file__) |