提交 3b70249a 编写于 作者: L liuyq-617

[TD-5910]obtain coredump execfn in script

上级 a8506a2d
...@@ -25,7 +25,7 @@ function stopTaosd { ...@@ -25,7 +25,7 @@ function stopTaosd {
function dohavecore(){ function dohavecore(){
corefile=`find $corepath -mmin 1` corefile=`find $corepath -mmin 1`
core_file=`echo $corefile|cut -d " " -f2` core_file=`echo $corefile|cut -d " " -f2`
proc=`echo $corefile|cut -d "_" -f3` proc=`file $core_file|awk -F "execfn:" '/execfn:/{print $2}'|tr -d \' |awk '{print $1}'|tr -d \,`
if [ -n "$corefile" ];then if [ -n "$corefile" ];then
echo 'taosd or taos has generated core' echo 'taosd or taos has generated core'
rm case.log rm case.log
...@@ -46,7 +46,7 @@ function dohavecore(){ ...@@ -46,7 +46,7 @@ function dohavecore(){
fi fi
fi fi
if [[ $1 == 1 ]];then if [[ $1 == 1 ]];then
echo '\n'|gdb /usr/local/taos/bin/$proc $core_file -ex "bt 10" -ex quit echo '\n'|gdb $proc $core_file -ex "bt 10" -ex quit
exit 8 exit 8
fi fi
fi fi
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册