[Lldb-commits] [lldb] [LLDB] Show exit code on Windows if process can't launch (PR #141290)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Tue May 27 05:39:40 PDT 2025


================
@@ -0,0 +1,22 @@
+import lldb
+from lldbsuite.test.decorators import *
+from lldbsuite.test.lldbtest import *
+from lldbsuite.test import lldbutil
+
+
+class MissingDllTestCase(TestBase):
+    @skipUnlessWindows
+    def test(self):
----------------
DavidSpickett wrote:

Add a docstring to explain the purpose, such as:
```
"""
Test that lldb reports the application's NTSTATUS exit code, rather than trying to treat it as a Win32 error number.
"""
```

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


More information about the lldb-commits mailing list