Skip to content

Commit d5768e3

Browse files
Fix test breakage caused by r374424
Summary: The build directory name is based on the test method name, so having two test methods with the same name in the same test file is a problem, even if they're in different test classes. On linux and darwin this conflict can go unnoticed, but windows has different filesystem semantics and it will fail when one process tries to delete files still held open by another. The problem is fixed just by changing the name of one of the test methods. Reviewers: JDevlieghere, jasonmolenda, labath, stella.stamenova Reviewed By: stella.stamenova Subscribers: lldb-commits Tags: #lldb Differential Revision: https://reviews.llvm.org/D68951 llvm-svn: 374803
1 parent 8408d95 commit d5768e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/packages/Python/lldbsuite/test/python_api/interpreter/TestRunCommandInterpreterAPI.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def setUp(self):
3030
self.dbg.SetErrorFileHandle (self.devnull, False)
3131

3232
@add_test_categories(['pyapi'])
33-
def test_run_session_with_error_and_quit(self):
33+
def test_run_session_with_error_and_quit_legacy(self):
3434
"""Run non-existing and quit command returns appropriate values"""
3535

3636
n_errors, quit_requested, has_crashed = self.dbg.RunCommandInterpreter(

0 commit comments

Comments
 (0)