Skip to content

Commit 429ce59

Browse files
authored
[lldb][Windows] Fixed the test TestGdbRemoteMemoryTagging (#92077)
Windows path is case insensitive. Tests `test_QMemTags_packets` and `test_qMemTags_packets` will use the same build dir and conflict. Added a suffix to resolve conflicts.
1 parent 0bc23f1 commit 429ce59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/test/API/tools/lldb-server/memory-tagging/TestGdbRemoteMemoryTagging.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def prep_memtags_test(self):
8484
@skipUnlessArch("aarch64")
8585
@skipUnlessPlatform(["linux"])
8686
@skipUnlessAArch64MTELinuxCompiler
87-
def test_qMemTags_packets(self):
87+
def test_tag_read_qMemTags_packets(self):
8888
"""Test that qMemTags packets are parsed correctly and/or rejected."""
8989
buf_address, page_size = self.prep_memtags_test()
9090

@@ -154,7 +154,7 @@ def check_tag_write(self, body, expected):
154154
@skipUnlessArch("aarch64")
155155
@skipUnlessPlatform(["linux"])
156156
@skipUnlessAArch64MTELinuxCompiler
157-
def test_QMemTags_packets(self):
157+
def test_tag_write_QMemTags_packets(self):
158158
"""Test that QMemTags packets are parsed correctly and/or rejected."""
159159
buf_address, page_size = self.prep_memtags_test()
160160

0 commit comments

Comments
 (0)