[Lldb-commits] [lldb] [lldb] Implement basic support for reverse-continue (PR #112079)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Tue Dec 17 02:00:06 PST 2024
================
@@ -0,0 +1,151 @@
+import lldb
+import time
+import unittest
+from lldbsuite.test.lldbtest import *
+from lldbsuite.test.decorators import *
+from lldbsuite.test.gdbclientutils import *
+from lldbsuite.test.lldbreverse import ReverseTestBase
+from lldbsuite.test import lldbutil
+
+
+class TestReverseContinueBreakpoints(ReverseTestBase):
+ NO_DEBUG_INFO_TESTCASE = True
----------------
labath wrote:
You can set this on the base class. I don't think we'd ever want to run multiple debug info variants of these tests.
https://github.com/llvm/llvm-project/pull/112079
More information about the lldb-commits
mailing list