[TD-1543]<test> adjust CI cases
This commit is contained in:
parent
a1ce0a2628
commit
d7f0a59891
|
@ -53,7 +53,7 @@ function buildTDengine {
|
||||||
function runGeneralCaseOneByOne {
|
function runGeneralCaseOneByOne {
|
||||||
while read -r line; do
|
while read -r line; do
|
||||||
if [[ $line =~ ^./test.sh* ]]; then
|
if [[ $line =~ ^./test.sh* ]]; then
|
||||||
case=`echo $line | grep -w "general\|unique\/mnode\/mgmt33.sim\|unique\/stable\/dnode3.sim\|unique\/cluster\/balance3.sim\|unique\/arbitrator\/offline_replica2_alterTable_online.sim"|awk '{print $NF}'`
|
case=`echo $line | grep sim$ |awk '{print $NF}'`
|
||||||
|
|
||||||
if [ -n "$case" ]; then
|
if [ -n "$case" ]; then
|
||||||
./test.sh -f $case > /dev/null 2>&1 && \
|
./test.sh -f $case > /dev/null 2>&1 && \
|
||||||
|
|
|
@ -192,3 +192,8 @@ python3 test.py -f query/queryInterval.py
|
||||||
|
|
||||||
# tools
|
# tools
|
||||||
python3 test.py -f tools/taosdemo.py
|
python3 test.py -f tools/taosdemo.py
|
||||||
|
|
||||||
|
# subscribe
|
||||||
|
python3 test.py -f subscribe/singlemeter.py
|
||||||
|
python3 test.py -f subscribe/stability.py
|
||||||
|
python3 test.py -f subscribe/supertable.py
|
|
@ -9,8 +9,9 @@ NC='\033[0m'
|
||||||
|
|
||||||
function runSimCaseOneByOne {
|
function runSimCaseOneByOne {
|
||||||
while read -r line; do
|
while read -r line; do
|
||||||
if [[ $line =~ ^run.* ]]; then
|
if [[ $line =~ ^./test.sh* ]]; then
|
||||||
case=`echo $line | awk '{print $NF}'`
|
case=`echo $line | grep sim$ |awk '{print $NF}'`
|
||||||
|
|
||||||
start_time=`date +%s`
|
start_time=`date +%s`
|
||||||
./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 || \
|
||||||
|
@ -54,7 +55,7 @@ if [ "$2" != "python" ]; then
|
||||||
runSimCaseOneByOne regressionSuite.sim
|
runSimCaseOneByOne regressionSuite.sim
|
||||||
elif [ "$1" == "full" ]; then
|
elif [ "$1" == "full" ]; then
|
||||||
echo "### run TSIM full test ###"
|
echo "### run TSIM full test ###"
|
||||||
runSimCaseOneByOne fullGeneralSuite.sim
|
runSimCaseOneByOne jenkins/basic.txt
|
||||||
elif [ "$1" == "smoke" ] || [ -z "$1" ]; then
|
elif [ "$1" == "smoke" ] || [ -z "$1" ]; then
|
||||||
echo "### run TSIM smoke test ###"
|
echo "### run TSIM smoke test ###"
|
||||||
runSimCaseOneByOne basicSuite.sim
|
runSimCaseOneByOne basicSuite.sim
|
||||||
|
|
Loading…
Reference in New Issue