Skip to content

Commit a1bbba0

Browse files
committed
[lldb][test][Windows] Fix NonStop tests on case insensitive file systems
On a case insensitive file sytem, the build dir for `test_multiple_c` and `test_multiple_C` are the same and therefore the log files are in the same place. This means one tries to clear the log file for the other. To fix this, make the names unique by adding the meaning of each protocol packet. https://sourceware.org/gdb/current/onlinedocs/gdb.html/Packets.html#Packets
1 parent 4e9fe86 commit a1bbba0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lldb/test/API/tools/lldb-server/TestNonStop.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,15 +220,15 @@ def multiple_resume_test(self, second_command):
220220
self.expect_gdbremote_sequence()
221221

222222
@add_test_categories(["llgs"])
223-
def test_multiple_C(self):
223+
def test_multiple_C_continue_with_signal(self):
224224
self.multiple_resume_test("C05")
225225

226226
@add_test_categories(["llgs"])
227-
def test_multiple_c(self):
227+
def test_multiple_c_continue_with_addr(self):
228228
self.multiple_resume_test("c")
229229

230230
@add_test_categories(["llgs"])
231-
def test_multiple_s(self):
231+
def test_multiple_s_single_step_with_addr(self):
232232
self.multiple_resume_test("s")
233233

234234
@skipIfWindows

0 commit comments

Comments
 (0)