smoketest.sh 2.0 KB
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/int.py
12
python3 ./test.py $1 -s && sleep 1
13
python3 ./test.py $1 -f insert/float.py
14
python3 ./test.py $1 -s && sleep 1
15
python3 ./test.py $1 -f insert/bigint.py
16
python3 ./test.py $1 -s && sleep 1
17
python3 ./test.py $1 -f insert/bool.py
18
python3 ./test.py $1 -s && sleep 1
19
python3 ./test.py $1 -f insert/double.py
20
python3 ./test.py $1 -s && sleep 1
21
python3 ./test.py $1 -f insert/smallint.py
22
python3 ./test.py $1 -s && sleep 1
23
python3 ./test.py $1 -f insert/tinyint.py
24
python3 ./test.py $1 -s && sleep 1
sangshuduo's avatar
sangshuduo 已提交
25
python3 ./test.py $1 -f insert/binary.py
26
python3 ./test.py $1 -s && sleep 1
sangshuduo's avatar
sangshuduo 已提交
27
python3 ./test.py $1 -f insert/date.py
28
python3 ./test.py $1 -s && sleep 1
sangshuduo's avatar
sangshuduo 已提交
29
python3 ./test.py $1 -f insert/nchar.py
30
python3 ./test.py $1 -s && sleep 1
S
Shuduo Sang 已提交
31 32
python3 ./test.py $1 -f insert/multi.py
python3 ./test.py $1 -s && sleep 1
33

S
Shuduo Sang 已提交
34
# table
35
python3 ./test.py $1 -f table/column_name.py
36
python3 ./test.py $1 -s && sleep 1
37
python3 ./test.py $1 -f table/column_num.py
38
python3 ./test.py $1 -s && sleep 1
39
python3 ./test.py $1 -f table/db_table.py
40
python3 ./test.py $1 -s && sleep 1
41

S
Shuduo Sang 已提交
42
# import
sangshuduo's avatar
sangshuduo 已提交
43
python3 ./test.py $1 -f import_merge/importDataLastSub.py
44
python3 ./test.py $1 -s && sleep 1
sangshuduo's avatar
sangshuduo 已提交
45
python3 ./test.py $1 -f import_merge/importHead.py
46
python3 ./test.py $1 -s && sleep 1
sangshuduo's avatar
sangshuduo 已提交
47
python3 ./test.py $1 -f import_merge/importLastT.py
48
python3 ./test.py $1 -s && sleep 1
sangshuduo's avatar
sangshuduo 已提交
49
python3 ./test.py $1 -f import_merge/importSpan.py
50
python3 ./test.py $1 -s && sleep 1
sangshuduo's avatar
sangshuduo 已提交
51
python3 ./test.py $1 -f import_merge/importTail.py
52
python3 ./test.py $1 -s && sleep 1
sangshuduo's avatar
sangshuduo 已提交
53
python3 ./test.py $1 -f import_merge/importTRestart.py
54
python3 ./test.py $1 -s && sleep 1
55 56
python3 ./test.py $1 -f import_merge/importInsertThenImport.py
python3 ./test.py $1 -s && sleep 1
S
Shuduo Sang 已提交
57 58 59 60

#tag 
python3 ./test.py $1 -f tag_lite/filter.py
python3 ./test.py $1 -s && sleep 1
P
Ping Xiao 已提交
61 62 63 64 65

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