smoketest.sh 946 字节
Newer Older
1
#!/bin/bash
2 3
ulimit -c unlimited

S
Shuduo Sang 已提交
4
# insert
5
python3 ./test.py $1 -f insert/basic.py
6
python3 ./test.py $1 -s && sleep 1
7
python3 ./test.py $1 -f insert/bigint.py
8
python3 ./test.py $1 -s && sleep 1
sangshuduo's avatar
sangshuduo 已提交
9
python3 ./test.py $1 -f insert/nchar.py
10
python3 ./test.py $1 -s && sleep 1
S
Shuduo Sang 已提交
11 12
python3 ./test.py $1 -f insert/multi.py
python3 ./test.py $1 -s && sleep 1
13

S
Shuduo Sang 已提交
14
# table
15
python3 ./test.py $1 -f table/column_name.py
16
python3 ./test.py $1 -s && sleep 1
17
python3 ./test.py $1 -f table/column_num.py
18
python3 ./test.py $1 -s && sleep 1
19
python3 ./test.py $1 -f table/db_table.py
20
python3 ./test.py $1 -s && sleep 1
21

S
Shuduo Sang 已提交
22
# import
sangshuduo's avatar
sangshuduo 已提交
23
python3 ./test.py $1 -f import_merge/importDataLastSub.py
24
python3 ./test.py $1 -s && sleep 1
S
Shuduo Sang 已提交
25 26 27 28

#tag 
python3 ./test.py $1 -f tag_lite/filter.py
python3 ./test.py $1 -s && sleep 1
P
Ping Xiao 已提交
29 30 31 32 33

#query
python3 ./test.py $1 -f query/filter.py
python3 ./test.py $1 -s && sleep 1

34 35 36 37
# client
python3 ./test.py $1 -f client/client.py
python3 ./test.py $1 -s && sleep 1