mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
13 lines
209 B
Bash
Executable file
13 lines
209 B
Bash
Executable file
#!/bin/bash
|
|
for i in {1..100}
|
|
do
|
|
echo $i
|
|
python3 ./test.py -f query/nestedQuery/nestedQuery_datacheck.py >>log 2>&1
|
|
if [ $? -eq 0 ]
|
|
then
|
|
echo success
|
|
else
|
|
echo failed
|
|
break
|
|
fi
|
|
done
|