merge from master

This commit is contained in:
Shengliang Guan 2021-08-25 16:17:02 +08:00
parent 0899e5e53c
commit 349d565d33
1 changed files with 3 additions and 4 deletions

View File

@ -1,13 +1,12 @@
#!/bin/bash
for N in -1 0 1 10000 10001
do
for l in 1023 1024 1073741824 1073741825
do
for S in udp tcp
do
taos -n speed -h BCC-2 -P 6030 -N $N -l $l -S $S 2>&1 | tee -a result.txt
done
do
taos -n speed -h BCC-2 -P 6030 -N $N -l $l -S $S 2>&1 | tee -a result.txt
done
done
done