mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
docs(webkit): update core dump analisys instructions (#2778)
This commit is contained in:
parent
f00fc0760a
commit
d6338b0cae
@ -13,7 +13,15 @@ mkdir -p /tmp/coredumps
|
|||||||
sudo bash -c 'echo "/tmp/coredumps/core-pid_%p.dump" > /proc/sys/kernel/core_pattern'
|
sudo bash -c 'echo "/tmp/coredumps/core-pid_%p.dump" > /proc/sys/kernel/core_pattern'
|
||||||
ulimit -c unlimited
|
ulimit -c unlimited
|
||||||
```
|
```
|
||||||
|
|
||||||
Then to read stack traces run the following command:
|
Then to read stack traces run the following command:
|
||||||
```bash
|
```bash
|
||||||
Tools/jhbuild/jhbuild-wrapper --wpe run gdb --batch -ex "thread apply all bt" WebKitBuild/WPE/Release/bin/MiniBrowser /tmp/coredumps/core-pid_29652.dump &> trace.txt
|
# To find out crashing process name
|
||||||
|
file core-pid_29652.dump
|
||||||
|
# Point gdb to the local binary of the crashed process and the core file
|
||||||
|
gdb $HOME/.cache/ms-playwright/webkit-1292/minibrowser-gtk/WebKitWebProcess core-pid_29652
|
||||||
|
# Inside gdb update .so library search path to the local one
|
||||||
|
set solib-search-path /home/yurys/.cache/ms-playwright/webkit-1292/minibrowser-gtk
|
||||||
|
# Finally print backtrace
|
||||||
|
bt
|
||||||
```
|
```
|
Loading…
x
Reference in New Issue
Block a user