xref: /llvm-project/lldb/test/Shell/Subprocess/fork-follow-child-wp.test (revision dd5808330484ad3b82ba92ae1a249127b0e0bbb4)
1# REQUIRES: native && dbregs-set
2# UNSUPPORTED: system-darwin
3# UNSUPPORTED: system-windows
4# RUN: %clangxx_host -g %p/Inputs/fork.cpp -DTEST_FORK=fork -o %t
5# RUN: %lldb -b -s %s %t | FileCheck %s
6settings set target.process.follow-fork-mode child
7settings set target.process.stop-on-exec false
8process launch -s
9watchpoint set variable -w write g_val
10# CHECK: Watchpoint created:
11continue
12# CHECK: stop reason = watchpoint
13continue
14# CHECK: stop reason = watchpoint
15continue
16# CHECK: function run in exec'd child
17