增加 performan 测试

This commit is contained in:
pengxuanzheng
2020-10-14 15:23:01 +08:00
parent 8a35250d21
commit 3f38cefc5e
58 changed files with 659 additions and 41 deletions

16
example/demo/test_size.sh Executable file
View File

@@ -0,0 +1,16 @@
#########################################################################
# File Name: test_times.sh
# Author: pxz
# Created Time: Mon 21 Sep 2020 04:43:35 PM CST
#########################################################################
#!/bin/bash
test_size=("1k" "10k" "100k" "1M" "2M" "3M" "4M")
num=0
echo ${test_size[${num}]}
while((${num} < 7))
do
./hos_write_complete mybucket ./data/${test_size[$num]}.data 1000
let "num++"
done