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

S
Shuduo Sang 已提交
30
# table
31
python3 ./test.py $1 -f table/column_name.py
32
python3 ./test.py $1 -s && sleep 1
33
python3 ./test.py $1 -f table/column_num.py
34
python3 ./test.py $1 -s && sleep 1
35
python3 ./test.py $1 -f table/db_table.py
36
python3 ./test.py $1 -s && sleep 1
37

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

#tag 
python3 ./test.py $1 -f tag_lite/filter.py
python3 ./test.py $1 -s && sleep 1
P
Ping Xiao 已提交
57 58 59 60 61

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