[Lldb-commits] [lldb] [lldb] Implement basic support for reverse-continue (PR #99736)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Tue Jul 23 08:06:48 PDT 2024
================
@@ -0,0 +1,119 @@
+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):
+ @add_test_categories(["dwarf"])
----------------
labath wrote:
You probably want to set `NO_DEBUG_INFO_TESTCASE = True` class property instead.
https://github.com/llvm/llvm-project/pull/99736
More information about the lldb-commits
mailing list