提交 78bda0d6 编写于 作者: haoranc's avatar haoranc

test: check asan cases successful

上级 d4e32cc8
...@@ -343,7 +343,7 @@ if __name__ == "__main__": ...@@ -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__": ...@@ -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__": ...@@ -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__": ...@@ -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__": ...@@ -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 @@ ...@@ -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 ...@@ -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
......
...@@ -318,7 +318,7 @@ if __name__ == "__main__": ...@@ -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__": ...@@ -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__": ...@@ -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__": ...@@ -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__": ...@@ -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")
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册