Merge pull request #24307 from taosdata/test/3.0/TD-28120

test: add script  loop.bat
This commit is contained in:
Alex Duan 2024-01-08 09:27:31 +08:00 committed by GitHub
commit 3a2af1084b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

View File

@ -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" %