Merge pull request #4263 from taosdata/test/testcase
Test/testcase exit when case failed
This commit is contained in:
commit
df74e517c3
|
@ -5,7 +5,7 @@ GREEN='\033[1;32m'
|
||||||
GREEN_DARK='\033[0;32m'
|
GREEN_DARK='\033[0;32m'
|
||||||
GREEN_UNDERLINE='\033[4;32m'
|
GREEN_UNDERLINE='\033[4;32m'
|
||||||
NC='\033[0m'
|
NC='\033[0m'
|
||||||
nohup /root/TDinternal/debug/build/bin/taosd -c /root/TDinternal/community/sim/dnode1/cfg >/dev/null &
|
nohup /var/lib/jenkins/workspace/TDinternal/debug/build/bin/taosd -c /var/lib/jenkins/workspace/TDinternal/community/sim/dnode1/cfg >/dev/null &
|
||||||
./crash_gen.sh --valgrind -p -t 10 -s 100 -b 4
|
./crash_gen.sh --valgrind -p -t 10 -s 100 -b 4
|
||||||
pidof taosd|xargs kill
|
pidof taosd|xargs kill
|
||||||
grep 'start to execute\|ERROR SUMMARY' valgrind.err|grep -v 'grep'|uniq|tee crash_gen_mem_err.log
|
grep 'start to execute\|ERROR SUMMARY' valgrind.err|grep -v 'grep'|uniq|tee crash_gen_mem_err.log
|
||||||
|
|
|
@ -16,6 +16,10 @@ function runSimCaseOneByOne {
|
||||||
./test.sh -f $case > /dev/null 2>&1 && \
|
./test.sh -f $case > /dev/null 2>&1 && \
|
||||||
echo -e "${GREEN}$case success${NC}" | tee -a out.log || \
|
echo -e "${GREEN}$case success${NC}" | tee -a out.log || \
|
||||||
echo -e "${RED}$case failed${NC}" | tee -a out.log
|
echo -e "${RED}$case failed${NC}" | tee -a out.log
|
||||||
|
out_log=`tail -1 out.log `
|
||||||
|
if [[ $out_log =~ 'failed' ]];then
|
||||||
|
exit 8
|
||||||
|
fi
|
||||||
end_time=`date +%s`
|
end_time=`date +%s`
|
||||||
echo execution time of $case was `expr $end_time - $start_time`s. | tee -a out.log
|
echo execution time of $case was `expr $end_time - $start_time`s. | tee -a out.log
|
||||||
fi
|
fi
|
||||||
|
@ -37,6 +41,10 @@ function runPyCaseOneByOne {
|
||||||
echo -e "${GREEN}$case success${NC}" | tee -a pytest-out.log || \
|
echo -e "${GREEN}$case success${NC}" | tee -a pytest-out.log || \
|
||||||
echo -e "${RED}$case failed${NC}" | tee -a pytest-out.log
|
echo -e "${RED}$case failed${NC}" | tee -a pytest-out.log
|
||||||
end_time=`date +%s`
|
end_time=`date +%s`
|
||||||
|
out_log=`tail -1 pytest-out.log `
|
||||||
|
if [[ $out_log =~ 'failed' ]];then
|
||||||
|
exit 8
|
||||||
|
fi
|
||||||
echo execution time of $case was `expr $end_time - $start_time`s. | tee -a pytest-out.log
|
echo execution time of $case was `expr $end_time - $start_time`s. | tee -a pytest-out.log
|
||||||
else
|
else
|
||||||
$line > /dev/null 2>&1
|
$line > /dev/null 2>&1
|
||||||
|
|
Loading…
Reference in New Issue