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

Michał Górny via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Jun 29 06:37:09 PDT 2022


mgorny marked an inline comment as done.
mgorny added inline comments.


================
Comment at: lldb/test/API/tools/lldb-server/main.cpp:357
+#if !defined(_WIN32)
+    } else if (consume_front(arg, "stop")) {
+      raise(SIGSTOP);
----------------
Changing this to `arg == "stop"`, as right now it unintentionally matches stuff like `"stop-me-now"` that other tests use as output.


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

https://reviews.llvm.org/D128780



More information about the lldb-commits mailing list