[Lldb-commits] [lldb] 7dd86c9 - [lldb/Reproducers] Skip test_remove_placeholder_add_real_module with reproducers

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Tue Jun 9 16:18:02 PDT 2020


Author: Jonas Devlieghere
Date: 2020-06-09T16:17:53-07:00
New Revision: 7dd86c9e7caa8f226e48b59caf9f0a38789ce164

URL: https://github.com/llvm/llvm-project/commit/7dd86c9e7caa8f226e48b59caf9f0a38789ce164
DIFF: https://github.com/llvm/llvm-project/commit/7dd86c9e7caa8f226e48b59caf9f0a38789ce164.diff

LOG: [lldb/Reproducers] Skip test_remove_placeholder_add_real_module with reproducers

Modules are not orphaned and it finds the existing module with the same
UUID from test_partial_uuid_match.

Added: 
    

Modified: 
    lldb/test/API/functionalities/postmortem/minidump-new/TestMiniDumpUUID.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/postmortem/minidump-new/TestMiniDumpUUID.py b/lldb/test/API/functionalities/postmortem/minidump-new/TestMiniDumpUUID.py
index 8cb7de9714e3..cc6d6fb37cae 100644
--- a/lldb/test/API/functionalities/postmortem/minidump-new/TestMiniDumpUUID.py
+++ b/lldb/test/API/functionalities/postmortem/minidump-new/TestMiniDumpUUID.py
@@ -252,6 +252,7 @@ def test_add_module_build_id_4(self):
                 "a", "", "01020304-0506-0708-090A-0B0C0D0E0F10").IsValid())
         self.assertFalse(self.target.AddModule("a", "", "01020305").IsValid())
 
+    @skipIfReproducer # Modules are not orphaned and it finds the module with the same UUID from test_partial_uuid_match.
     def test_remove_placeholder_add_real_module(self):
         """
             Test that removing a placeholder module and adding back the real


        


More information about the lldb-commits mailing list