[Lldb-commits] [lldb] 267fa8d - [lldb][Darwin] Refine naming of test

Julian Lettner via lldb-commits lldb-commits at lists.llvm.org
Mon Oct 13 09:56:04 PDT 2025


Author: Julian Lettner
Date: 2025-10-13T09:54:41-07:00
New Revision: 267fa8dd1efce0b79ebcaa804d54542c99918df2

URL: https://github.com/llvm/llvm-project/commit/267fa8dd1efce0b79ebcaa804d54542c99918df2
DIFF: https://github.com/llvm/llvm-project/commit/267fa8dd1efce0b79ebcaa804d54542c99918df2.diff

LOG: [lldb][Darwin] Refine naming of test

Update name of `TestDarwinMTE` test method to
`test_memory_read_show_tags` to correspond to LLDB
command invocation:
```
memory read <start-addr> <end-addr> --show-tags
```

Added: 
    

Modified: 
    lldb/test/API/macosx/mte/TestDarwinMTE.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/macosx/mte/TestDarwinMTE.py b/lldb/test/API/macosx/mte/TestDarwinMTE.py
index ef858b1fc2710..489e24a679472 100644
--- a/lldb/test/API/macosx/mte/TestDarwinMTE.py
+++ b/lldb/test/API/macosx/mte/TestDarwinMTE.py
@@ -47,7 +47,7 @@ def test_memory_region(self):
         self.expect("memory region ptr", substrs=["memory tagging: enabled"])
 
     @skipUnlessFeature(cpu_feature.AArch64.MTE)
-    def test_memory_read_with_tags(self):
+    def test_memory_read_show_tags(self):
         self.build()
         lldbutil.run_to_source_breakpoint(
             self, "// before free", lldb.SBFileSpec("main.c"), exe_name=exe_name


        


More information about the lldb-commits mailing list