Merge pull request #24307 from taosdata/test/3.0/TD-28120
test: add script loop.bat
This commit is contained in:
commit
3a2af1084b
|
@ -0,0 +1,13 @@
|
|||
@echo off
|
||||
set LoopNumner=%1
|
||||
set cmd=%2
|
||||
|
||||
echo "Loop Number: %LoopNumner%"
|
||||
echo "command : %cmd:"=%"
|
||||
|
||||
For /l %%i in (1,1,%LoopNumner% ) do (
|
||||
echo "execute times:"%%i
|
||||
%cmd:"=%
|
||||
)
|
||||
|
||||
% case loop.bat 100 "python3 .\test.py -f 2-query\query_cols_tags_and_or.py" %
|
Loading…
Reference in New Issue