================
@@ -0,0 +1,51 @@
+"""
+Test that we can backtrace up an ARM Cortex-M Exception return stack
+"""
+
+import lldb
+import json
+from lldbsuite.test.decorators import *
+from lldbsuite.test.lldbtest import *
+from lldbsuite.test import lldbutil
+
+
+class TestCortexMExceptionUnwind(TestBase):
+    NO_DEBUG_INFO_TESTCASE = True
+
+    def test_no_fpu(self):
+        """Test that we can backtrace correctly through an ARM Cortex-M 
Exception return stack"""
+
+        target = self.dbg.CreateTarget("")
+        exe = "binary.json"
----------------
jasonmolenda wrote:

the json only exists in the source directory for the test, the API tests are 
run with that as the current working directory.  They'll refer to source files 
by just the filename often.  I'll grep around a little and see if there's an 
lldbtest method to make it explicit though.

https://github.com/llvm/llvm-project/pull/153922
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to