[Lldb-commits] [lldb] 5955edf - [lldb][Test] Add missing breakpoint in TestNamespaceLookup.py

Michael Buch via lldb-commits lldb-commits at lists.llvm.org
Fri Aug 26 02:29:30 PDT 2022


Author: Michael Buch
Date: 2022-08-26T10:28:28+01:00
New Revision: 5955edf8a453b4b8ff7d5dfff2db3adc27a36bc1

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

LOG: [lldb][Test] Add missing breakpoint in TestNamespaceLookup.py

Added: 
    

Modified: 
    lldb/test/API/lang/cpp/namespace/TestNamespaceLookup.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/lang/cpp/namespace/TestNamespaceLookup.py b/lldb/test/API/lang/cpp/namespace/TestNamespaceLookup.py
index 789b33c87256e..dff3dfe4b6632 100644
--- a/lldb/test/API/lang/cpp/namespace/TestNamespaceLookup.py
+++ b/lldb/test/API/lang/cpp/namespace/TestNamespaceLookup.py
@@ -54,6 +54,13 @@ def test_scope_lookup_with_run_command_globals(self):
             num_expected_locations=1,
             loc_exact=False)
 
+        lldbutil.run_break_set_by_file_and_line(
+            self,
+            "ns3.cpp",
+            self.line_break_after_using_directive,
+            num_expected_locations=1,
+            loc_exact=False)
+
         # Run to BP_global_scope at file scope
         self.runToBkpt("run")
 


        


More information about the lldb-commits mailing list