[Lldb-commits] [lldb] [LLDB] Add integration test for libsanitizers trace collection (PR #134323)

Julian Lettner via lldb-commits lldb-commits at lists.llvm.org
Fri Apr 4 14:28:30 PDT 2025


================
@@ -36,34 +42,61 @@ def setUp(self):
         self.line_breakpoint = line_number("main.c", "// break line")
 
     # Test line numbers: rdar://126237493
-    def libsanitizer_tests(self):
-        target = self.createTestTarget()
+    # for libsanitizers and remove `skip_line_numbers` parameter
+    def check_traces(self, skip_line_numbers):
----------------
yln wrote:

Good catch, thanks!
I solved this buy giving the parameter a default value: `check_traces(self, skip_line_numbers=False)`

https://github.com/llvm/llvm-project/pull/134323


More information about the lldb-commits mailing list