[Lldb-commits] [lldb] bdaedff - [lldb] Speculatively fix TestBreakpointSerialization on Windows

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Wed Jan 3 15:51:35 PST 2024


Author: Alex Langford
Date: 2024-01-03T15:50:25-08:00
New Revision: bdaedffc43a608ef5fdc8a0e0c524be0a3a8f72e

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

LOG: [lldb] Speculatively fix TestBreakpointSerialization on Windows

See: https://lab.llvm.org/buildbot/#/builders/219/builds/7961/steps/6/logs/stdio

Added: 
    

Modified: 
    lldb/test/API/functionalities/breakpoint/serialize/TestBreakpointSerialization.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/breakpoint/serialize/TestBreakpointSerialization.py b/lldb/test/API/functionalities/breakpoint/serialize/TestBreakpointSerialization.py
index b6cc3d9989a699..985bafabdc5bcc 100644
--- a/lldb/test/API/functionalities/breakpoint/serialize/TestBreakpointSerialization.py
+++ b/lldb/test/API/functionalities/breakpoint/serialize/TestBreakpointSerialization.py
@@ -55,7 +55,7 @@ def test_resolver_serialization(self):
         self.setup_targets_and_cleanup()
 
         exe_path = self.getBuildArtifact("a.out")
-        exe_module = self.orig_target.module[exe_path]
+        exe_module = self.orig_target.module["a.out"]
         self.assertTrue(
             exe_module.IsValid(), "Failed to find the executable module in target"
         )


        


More information about the lldb-commits mailing list