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

4 5 6 7
# client
python3 ./test.py $1 -f client/client.py
python3 ./test.py $1 -s && sleep 1

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

S
Shuduo Sang 已提交
18
# table
19
python3 ./test.py $1 -f table/column_name.py
20
python3 ./test.py $1 -s && sleep 1
21
python3 ./test.py $1 -f table/column_num.py
22
python3 ./test.py $1 -s && sleep 1
23
python3 ./test.py $1 -f table/db_table.py
24
python3 ./test.py $1 -s && sleep 1
25

S
Shuduo Sang 已提交
26
# import
sangshuduo's avatar
sangshuduo 已提交
27
python3 ./test.py $1 -f import_merge/importDataLastSub.py
28
python3 ./test.py $1 -s && sleep 1
S
Shuduo Sang 已提交
29 30 31 32

#tag 
python3 ./test.py $1 -f tag_lite/filter.py
python3 ./test.py $1 -s && sleep 1
P
Ping Xiao 已提交
33 34 35 36 37

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