smoketest.sh 1.8 KB
Newer Older
1
#!/bin/bash
S
Shuduo Sang 已提交
2
# insert
3
python3 ./test.py $1 -f insert/basic.py
4
python3 ./test.py $1 -s && sleep 1
5
python3 ./test.py $1 -f insert/int.py
6
python3 ./test.py $1 -s && sleep 1
7
python3 ./test.py $1 -f insert/float.py
8
python3 ./test.py $1 -s && sleep 1
9
python3 ./test.py $1 -f insert/bigint.py
10
python3 ./test.py $1 -s && sleep 1
11
python3 ./test.py $1 -f insert/bool.py
12
python3 ./test.py $1 -s && sleep 1
13
python3 ./test.py $1 -f insert/double.py
14
python3 ./test.py $1 -s && sleep 1
15
python3 ./test.py $1 -f insert/smallint.py
16
python3 ./test.py $1 -s && sleep 1
17
python3 ./test.py $1 -f insert/tinyint.py
18
python3 ./test.py $1 -s && sleep 1
sangshuduo's avatar
sangshuduo 已提交
19
python3 ./test.py $1 -f insert/binary.py
20
python3 ./test.py $1 -s && sleep 1
sangshuduo's avatar
sangshuduo 已提交
21
python3 ./test.py $1 -f insert/date.py
22
python3 ./test.py $1 -s && sleep 1
sangshuduo's avatar
sangshuduo 已提交
23
python3 ./test.py $1 -f insert/nchar.py
24
python3 ./test.py $1 -s && sleep 1
S
Shuduo Sang 已提交
25 26
python3 ./test.py $1 -f insert/multi.py
python3 ./test.py $1 -s && sleep 1
27

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

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

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