File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
test/failure_handler/src/share/conf Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -54,8 +54,11 @@ native.stack.args.delimiter=\0
5454native.stack.params.repeat =6
5555
5656# has to be the last command
57- native.core.app =kill
58- native.core.args =-ABRT %p
57+ native.core.app =bash
58+ # The below trick was found on https://stackoverflow.com/a/41613532
59+ native.core.args =-c\0kill -ABRT %p && tail --pid=%p -f /dev/null
60+ native.core.args.delimiter =\0
61+ native.core.timeout =600000
5962
6063cores =native.gdb
6164native.gdb.app =gdb
Original file line number Diff line number Diff line change @@ -62,8 +62,11 @@ native.stack.params.repeat=6
6262native.stack.args =-c\0DevToolsSecurity --status | grep -q enabled && lldb -o 'attach %p' -o 'thread backtrace all' -o 'detach' -o 'quit'
6363
6464# has to be the last command
65- native.core.app =kill
66- native.core.args =-ABRT %p
65+ native.core.app =bash
66+ # The below trick was found on https://stackoverflow.com/a/41613532
67+ native.core.args =-c\0kill -ABRT %p && lsof -p %p +r 1 &>/dev/null
68+ native.core.delimiter =\0
69+ native.core.timeout =600000
6770
6871cores =native.lldb
6972native.lldb.app =lldb
You can’t perform that action at this time.
0 commit comments