File tree 2 files changed +10
-4
lines changed
test/failure_handler/src/share/conf
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
54
54
native.stack.params.repeat =6
55
55
56
56
# 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
59
62
60
63
cores =native.gdb
61
64
native.gdb.app =gdb
Original file line number Diff line number Diff line change @@ -62,8 +62,11 @@ native.stack.params.repeat=6
62
62
native.stack.args =-c\0DevToolsSecurity --status | grep -q enabled && lldb -o 'attach %p' -o 'thread backtrace all' -o 'detach' -o 'quit'
63
63
64
64
# 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
67
70
68
71
cores =native.lldb
69
72
native.lldb.app =lldb
You can’t perform that action at this time.
0 commit comments