diff options
author | Stella Stamenova <stilis@microsoft.com> | 2018-10-15 19:51:21 +0000 |
---|---|---|
committer | Stella Stamenova <stilis@microsoft.com> | 2018-10-15 19:51:21 +0000 |
commit | 7a8865cea819bda4f3b292e33cc16b7b093bd378 (patch) | |
tree | 209f107ada261542f8ab01357bd39ac0951f3ae3 /lldb/packages/Python/lldbsuite/test | |
parent | 5c61b9d0cffc130dcb3949e9781823f2e8b5022d (diff) | |
download | bcm5719-llvm-7a8865cea819bda4f3b292e33cc16b7b093bd378.tar.gz bcm5719-llvm-7a8865cea819bda4f3b292e33cc16b7b093bd378.zip |
[lldbsuite] Make the names of test classes unique
Summary:
If the names are not unique, the tests overwrite each other's results and logs. This also causes failures on platforms where the files are locked for writing.
The names of the class/test pairs *have to* always be unique. The easiest way to achieve that is to name each class differently (usually the same as the file name).
Reviewers: jasonmolenda, asmith
Subscribers: clayborg, nemanjai, kbarton, lldb-commits
Differential Revision: https://reviews.llvm.org/D53297
llvm-svn: 344547
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestStopPCs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestStopPCs.py b/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestStopPCs.py index 0a3d9a5efc7..5a0849f0d2e 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestStopPCs.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestStopPCs.py @@ -5,7 +5,7 @@ from lldbsuite.test.decorators import * from gdbclientutils import * -class TestThreadSelectionBug(GDBRemoteTestBase): +class TestStopPCs(GDBRemoteTestBase): def test(self): class MyResponder(MockGDBServerResponder): def haltReason(self): |