Add start time for each case
This commit is contained in:
parent
a586784c5d
commit
2612f11a63
|
@ -56,9 +56,9 @@ function runGeneralCaseOneByOne {
|
|||
case=`echo $line | grep sim$ |awk '{print $NF}'`
|
||||
|
||||
if [ -n "$case" ]; then
|
||||
./test.sh -f $case > /dev/null 2>&1 && \
|
||||
echo -e "${GREEN}$case success${NC}" | tee -a $TDENGINE_COVERAGE_REPORT || \
|
||||
echo -e "${RED}$case failed${NC}" | tee -a $TDENGINE_COVERAGE_REPORT
|
||||
date +%F\ %T | tee -a $TDENGINE_COVERAGE_REPORT && ./test.sh -f $case > /dev/null 2>&1 && \
|
||||
( grep -q 'script.*success.*m$' ../../sim/tsim/log/taoslog0.0 && echo -e "${GREEN}$case success${NC}" | tee -a $TDENGINE_COVERAGE_REPORT ) \
|
||||
|| echo -e "${RED}$case failed${NC}" | tee -a $TDENGINE_COVERAGE_REPORT
|
||||
fi
|
||||
fi
|
||||
done < $1
|
||||
|
|
|
@ -22,7 +22,8 @@ function runSimCaseOneByOne {
|
|||
case=`echo $line | grep sim$ |awk '{print $NF}'`
|
||||
IN_TDINTERNAL="community"
|
||||
start_time=`date +%s`
|
||||
IN_TDINTERNAL="community"
|
||||
IN_TDINTERNAL="community"
|
||||
date +%F\ %T | tee -a out.log
|
||||
if [[ "$tests_dir" == *"$IN_TDINTERNAL"* ]]; then
|
||||
echo -n $case
|
||||
./test.sh -f $case > /dev/null 2>&1 && \
|
||||
|
@ -53,6 +54,7 @@ function runSimCaseOneByOnefq {
|
|||
|
||||
start_time=`date +%s`
|
||||
IN_TDINTERNAL="community"
|
||||
date +%F\ %T | tee -a out.log
|
||||
if [[ "$tests_dir" == *"$IN_TDINTERNAL"* ]]; then
|
||||
echo -n $case
|
||||
./test.sh -f $case > /dev/null 2>&1 && \
|
||||
|
@ -94,6 +96,7 @@ function runPyCaseOneByOne {
|
|||
case=`echo $line|awk '{print $NF}'`
|
||||
fi
|
||||
start_time=`date +%s`
|
||||
date +%F\ %T | tee -a pytest-out.log
|
||||
echo -n $case
|
||||
$line > /dev/null 2>&1 && \
|
||||
echo -e "${GREEN} success${NC}" | tee -a pytest-out.log || \
|
||||
|
@ -122,6 +125,7 @@ function runPyCaseOneByOnefq {
|
|||
case=`echo $line|awk '{print $NF}'`
|
||||
fi
|
||||
start_time=`date +%s`
|
||||
date +%F\ %T | tee -a pytest-out.log
|
||||
echo -n $case
|
||||
$line > /dev/null 2>&1 && \
|
||||
echo -e "${GREEN} success${NC}" | tee -a pytest-out.log || \
|
||||
|
|
Loading…
Reference in New Issue