1
0
Fork 0

try to get stacktraces on mac

This commit is contained in:
Wilfried Goesgens 2017-03-16 15:01:30 +01:00
parent 9d3740d098
commit 968ad1f82a
1 changed files with 1 additions and 1 deletions

View File

@ -479,7 +479,7 @@ function analyzeCoreDumpMac (instanceInfo, options, storeArangodPath, pid) {
command += "printf 'bt \n\n";
// LLDB doesn't have an equivilant of `bt full` so we try to show the upper
// most 5 frames with all variables
for (i = 0; i < 5; i ++)
for (var i = 0; i < 5; i ++)
command += 'frame variable\\n up \\n';
command += " bt full\\n thread backtrace all\\n';";
command += 'sleep 10;';