test: check asan cases successful
This commit is contained in:
parent
6a5934983c
commit
6f4b24a510
|
@ -343,7 +343,7 @@ if __name__ == "__main__":
|
||||||
for i in range(cursor.rowcount):
|
for i in range(cursor.rowcount):
|
||||||
if res[i][0] == "queryPolicy":
|
if res[i][0] == "queryPolicy":
|
||||||
if int(res[i][1]) == int(queryPolicy):
|
if int(res[i][1]) == int(queryPolicy):
|
||||||
tdLog.success(
|
tdLog.info(
|
||||||
f"alter queryPolicy to {queryPolicy} successfully"
|
f"alter queryPolicy to {queryPolicy} successfully"
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
|
@ -402,7 +402,7 @@ if __name__ == "__main__":
|
||||||
for i in range(cursor.rowcount):
|
for i in range(cursor.rowcount):
|
||||||
if res[i][0] == "queryPolicy":
|
if res[i][0] == "queryPolicy":
|
||||||
if int(res[i][1]) == int(queryPolicy):
|
if int(res[i][1]) == int(queryPolicy):
|
||||||
tdLog.success(
|
tdLog.info(
|
||||||
f"alter queryPolicy to {queryPolicy} successfully"
|
f"alter queryPolicy to {queryPolicy} successfully"
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
|
@ -471,7 +471,7 @@ if __name__ == "__main__":
|
||||||
# for i in range(tdSql.queryRows):
|
# for i in range(tdSql.queryRows):
|
||||||
# if tdSql.queryResult[i][0] == "queryPolicy" :
|
# if tdSql.queryResult[i][0] == "queryPolicy" :
|
||||||
# if int(tdSql.queryResult[i][1]) == int(queryPolicy):
|
# if int(tdSql.queryResult[i][1]) == int(queryPolicy):
|
||||||
# tdLog.success('alter queryPolicy to %d successfully'%queryPolicy)
|
# tdLog.info('alter queryPolicy to %d successfully'%queryPolicy)
|
||||||
# else :
|
# else :
|
||||||
# tdLog.debug(tdSql.queryResult)
|
# tdLog.debug(tdSql.queryResult)
|
||||||
# tdLog.exit("alter queryPolicy to %d failed"%queryPolicy)
|
# tdLog.exit("alter queryPolicy to %d failed"%queryPolicy)
|
||||||
|
@ -484,7 +484,7 @@ if __name__ == "__main__":
|
||||||
for i in range(cursor.rowcount):
|
for i in range(cursor.rowcount):
|
||||||
if res[i][0] == "queryPolicy":
|
if res[i][0] == "queryPolicy":
|
||||||
if int(res[i][1]) == int(queryPolicy):
|
if int(res[i][1]) == int(queryPolicy):
|
||||||
tdLog.success(
|
tdLog.info(
|
||||||
f"alter queryPolicy to {queryPolicy} successfully"
|
f"alter queryPolicy to {queryPolicy} successfully"
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
|
@ -545,7 +545,7 @@ if __name__ == "__main__":
|
||||||
for i in range(cursor.rowcount):
|
for i in range(cursor.rowcount):
|
||||||
if res[i][0] == "queryPolicy":
|
if res[i][0] == "queryPolicy":
|
||||||
if int(res[i][1]) == int(queryPolicy):
|
if int(res[i][1]) == int(queryPolicy):
|
||||||
tdLog.success(
|
tdLog.info(
|
||||||
f"alter queryPolicy to {queryPolicy} successfully"
|
f"alter queryPolicy to {queryPolicy} successfully"
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
|
|
|
@ -914,7 +914,7 @@
|
||||||
,,y,system-test,./pytest.sh python3 ./test.py -f 2-query/arctan.py -Q 3
|
,,y,system-test,./pytest.sh python3 ./test.py -f 2-query/arctan.py -Q 3
|
||||||
,,y,system-test,./pytest.sh python3 ./test.py -f 2-query/query_cols_tags_and_or.py -Q 3
|
,,y,system-test,./pytest.sh python3 ./test.py -f 2-query/query_cols_tags_and_or.py -Q 3
|
||||||
,,y,system-test,./pytest.sh python3 ./test.py -f 2-query/nestedQuery.py -Q 3
|
,,y,system-test,./pytest.sh python3 ./test.py -f 2-query/nestedQuery.py -Q 3
|
||||||
,,y,system-test,./pytest.sh python3 ./test.py -f 2-query/nestedQueryInterval.py -Q 3
|
#,,y,system-test,./pytest.sh python3 ./test.py -f 2-query/nestedQueryInterval.py -Q 3
|
||||||
,,y,system-test,./pytest.sh python3 ./test.py -f 2-query/nestedQuery_str.py -Q 3
|
,,y,system-test,./pytest.sh python3 ./test.py -f 2-query/nestedQuery_str.py -Q 3
|
||||||
,,y,system-test,./pytest.sh python3 ./test.py -f 2-query/nestedQuery_math.py -Q 3
|
,,y,system-test,./pytest.sh python3 ./test.py -f 2-query/nestedQuery_math.py -Q 3
|
||||||
,,y,system-test,./pytest.sh python3 ./test.py -f 2-query/nestedQuery_time.py -Q 3
|
,,y,system-test,./pytest.sh python3 ./test.py -f 2-query/nestedQuery_time.py -Q 3
|
||||||
|
|
|
@ -94,7 +94,7 @@ else
|
||||||
sleep 1
|
sleep 1
|
||||||
done
|
done
|
||||||
|
|
||||||
AsanFileSuccessLen=$(grep -w successfully $AsanFile | wc -l)
|
AsanFileSuccessLen=$(grep -w "successfully executed" $AsanFile | wc -l)
|
||||||
echo "AsanFileSuccessLen:" $AsanFileSuccessLen
|
echo "AsanFileSuccessLen:" $AsanFileSuccessLen
|
||||||
|
|
||||||
if [ $AsanFileSuccessLen -gt 0 ]; then
|
if [ $AsanFileSuccessLen -gt 0 ]; then
|
||||||
|
@ -104,4 +104,4 @@ else
|
||||||
echo "Execute script failure"
|
echo "Execute script failure"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
|
@ -318,7 +318,7 @@ if __name__ == "__main__":
|
||||||
for i in range(cursor.rowcount):
|
for i in range(cursor.rowcount):
|
||||||
if res[i][0] == "queryPolicy" :
|
if res[i][0] == "queryPolicy" :
|
||||||
if int(res[i][1]) == int(queryPolicy):
|
if int(res[i][1]) == int(queryPolicy):
|
||||||
tdLog.success(f'alter queryPolicy to {queryPolicy} successfully')
|
tdLog.info(f'alter queryPolicy to {queryPolicy} successfully')
|
||||||
else:
|
else:
|
||||||
tdLog.debug(res)
|
tdLog.debug(res)
|
||||||
tdLog.exit(f"alter queryPolicy to {queryPolicy} failed")
|
tdLog.exit(f"alter queryPolicy to {queryPolicy} failed")
|
||||||
|
@ -371,7 +371,7 @@ if __name__ == "__main__":
|
||||||
for i in range(cursor.rowcount):
|
for i in range(cursor.rowcount):
|
||||||
if res[i][0] == "queryPolicy" :
|
if res[i][0] == "queryPolicy" :
|
||||||
if int(res[i][1]) == int(queryPolicy):
|
if int(res[i][1]) == int(queryPolicy):
|
||||||
tdLog.success(f'alter queryPolicy to {queryPolicy} successfully')
|
tdLog.info(f'alter queryPolicy to {queryPolicy} successfully')
|
||||||
else:
|
else:
|
||||||
tdLog.debug(res)
|
tdLog.debug(res)
|
||||||
tdLog.exit(f"alter queryPolicy to {queryPolicy} failed")
|
tdLog.exit(f"alter queryPolicy to {queryPolicy} failed")
|
||||||
|
@ -439,7 +439,7 @@ if __name__ == "__main__":
|
||||||
# for i in range(tdSql.queryRows):
|
# for i in range(tdSql.queryRows):
|
||||||
# if tdSql.queryResult[i][0] == "queryPolicy" :
|
# if tdSql.queryResult[i][0] == "queryPolicy" :
|
||||||
# if int(tdSql.queryResult[i][1]) == int(queryPolicy):
|
# if int(tdSql.queryResult[i][1]) == int(queryPolicy):
|
||||||
# tdLog.success('alter queryPolicy to %d successfully'%queryPolicy)
|
# tdLog.info('alter queryPolicy to %d successfully'%queryPolicy)
|
||||||
# else :
|
# else :
|
||||||
# tdLog.debug(tdSql.queryResult)
|
# tdLog.debug(tdSql.queryResult)
|
||||||
# tdLog.exit("alter queryPolicy to %d failed"%queryPolicy)
|
# tdLog.exit("alter queryPolicy to %d failed"%queryPolicy)
|
||||||
|
@ -452,7 +452,7 @@ if __name__ == "__main__":
|
||||||
for i in range(cursor.rowcount):
|
for i in range(cursor.rowcount):
|
||||||
if res[i][0] == "queryPolicy" :
|
if res[i][0] == "queryPolicy" :
|
||||||
if int(res[i][1]) == int(queryPolicy):
|
if int(res[i][1]) == int(queryPolicy):
|
||||||
tdLog.success(f'alter queryPolicy to {queryPolicy} successfully')
|
tdLog.info(f'alter queryPolicy to {queryPolicy} successfully')
|
||||||
else:
|
else:
|
||||||
tdLog.debug(res)
|
tdLog.debug(res)
|
||||||
tdLog.exit(f"alter queryPolicy to {queryPolicy} failed")
|
tdLog.exit(f"alter queryPolicy to {queryPolicy} failed")
|
||||||
|
@ -509,7 +509,7 @@ if __name__ == "__main__":
|
||||||
for i in range(cursor.rowcount):
|
for i in range(cursor.rowcount):
|
||||||
if res[i][0] == "queryPolicy" :
|
if res[i][0] == "queryPolicy" :
|
||||||
if int(res[i][1]) == int(queryPolicy):
|
if int(res[i][1]) == int(queryPolicy):
|
||||||
tdLog.success(f'alter queryPolicy to {queryPolicy} successfully')
|
tdLog.info(f'alter queryPolicy to {queryPolicy} successfully')
|
||||||
else:
|
else:
|
||||||
tdLog.debug(res)
|
tdLog.debug(res)
|
||||||
tdLog.exit(f"alter queryPolicy to {queryPolicy} failed")
|
tdLog.exit(f"alter queryPolicy to {queryPolicy} failed")
|
||||||
|
|
Loading…
Reference in New Issue