[Lldb-commits] [PATCH] D128780: [lldb] [test] Use raise(SIGSTOP) instead of trap in fork tests

Pavel Labath via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Jun 29 01:46:50 PDT 2022


labath accepted this revision.
labath added inline comments.
This revision is now accepted and ready to land.


================
Comment at: lldb/packages/Python/lldbsuite/test/tools/lldb-server/fork_testbase.py:155
         parent_expect = [
-            "T05thread:p{}.{};.*".format(parent_pid, parent_tid),
+            "T13thread:p{}.{};.*".format(parent_pid, parent_tid),
             "W00;process:{}#.*".format(parent_pid),
----------------
SIGSTOP is 17 (0x11) on macos. Maybe you could check for "reason:signal" instead?


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D128780/new/

https://reviews.llvm.org/D128780



More information about the lldb-commits mailing list