fix travis output
This commit is contained in:
parent
24f134f421
commit
ac7baae88b
|
@ -42,11 +42,12 @@ def pre_test(){
|
|||
killall -9 taosd ||echo "no taosd running"
|
||||
killall -9 gdb || echo "no gdb running"
|
||||
cd ${WKC}
|
||||
git checkout develop
|
||||
git reset --hard HEAD~10 >/dev/null
|
||||
git checkout develop
|
||||
git pull >/dev/null
|
||||
git fetch origin +refs/pull/${CHANGE_ID}/merge
|
||||
git checkout -qf FETCH_HEAD
|
||||
git clean -dfx
|
||||
find ${WKC}/tests/pytest -name \'*\'.sql -exec rm -rf {} \\;
|
||||
cd ${WK}
|
||||
git reset --hard HEAD~10
|
||||
|
@ -55,6 +56,7 @@ def pre_test(){
|
|||
cd ${WK}
|
||||
export TZ=Asia/Harbin
|
||||
date
|
||||
git clean -dfx
|
||||
rm -rf ${WK}/debug
|
||||
mkdir debug
|
||||
cd debug
|
||||
|
|
|
@ -25,9 +25,6 @@ function stopTaosd {
|
|||
function dohavecore(){
|
||||
corefile=`find $corepath -mmin 1`
|
||||
core_file=`echo $corefile|cut -d " " -f2`
|
||||
echo "corefile:$core_file"
|
||||
echo "corepath:$corepath"
|
||||
ls -l $corepath
|
||||
proc=`echo $corefile|cut -d "_" -f3`
|
||||
if [ -n "$corefile" ];then
|
||||
echo 'taosd or taos has generated core'
|
||||
|
@ -82,7 +79,6 @@ function runSimCaseOneByOne {
|
|||
# fi
|
||||
end_time=`date +%s`
|
||||
echo execution time of $case was `expr $end_time - $start_time`s. | tee -a out.log
|
||||
dohavecore 0
|
||||
fi
|
||||
done < $1
|
||||
}
|
||||
|
@ -159,7 +155,6 @@ function runPyCaseOneByOne {
|
|||
else
|
||||
$line > /dev/null 2>&1
|
||||
fi
|
||||
dohavecore 0
|
||||
fi
|
||||
done < $1
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue