fulltest.sh 5.4 KB
Newer Older
1 2
#!/bin/bash
set -e
T
tangfangzhi 已提交
3
set -x
4

5
python3 ./test.py -f 0-others/taosShell.py
6 7
python3 ./test.py -f 0-others/taosShellError.py
python3 ./test.py -f 0-others/taosShellNetChk.py
8
python3 ./test.py -f 0-others/telemetry.py
9
python3 ./test.py -f 0-others/taosdMonitor.py
10
python3 ./test.py -f 0-others/udfTest.py
11 12
python3 ./test.py -f 0-others/udf_create.py
python3 ./test.py -f 0-others/udf_restart_taosd.py
13
python3 ./test.py -f 0-others/cachelast.py
14

C
cpwu 已提交
15
python3 ./test.py -f 0-others/user_control.py
C
cpwu 已提交
16
python3 ./test.py -f 0-others/fsync.py
C
cpwu 已提交
17

18
python3 ./test.py -f 1-insert/influxdb_line_taosc_insert.py
W
wenzhouwww@live.cn 已提交
19
python3 ./test.py -f 1-insert/opentsdb_telnet_line_taosc_insert.py
20
python3 ./test.py -f 1-insert/opentsdb_json_taosc_insert.py
haoranc's avatar
haoranc 已提交
21
# BUG python3 ./test.py -f 1-insert/test_stmt_muti_insert_query.py
J
jiacy-jcy 已提交
22 23
python3 ./test.py -f 1-insert/alter_stable.py
python3 ./test.py -f 1-insert/alter_table.py
haoranc's avatar
haoranc 已提交
24
python3 ./test.py -f 1-insert/insertWithMoreVgroup.py
J
jiacy-jcy 已提交
25
python3 ./test.py -f 1-insert/table_comment.py
C
cpwu 已提交
26
python3 ./test.py -f 2-query/between.py
C
cpwu 已提交
27
python3 ./test.py -f 2-query/distinct.py
T
tangfangzhi 已提交
28
python3 ./test.py -f 2-query/varchar.py
C
cpwu 已提交
29 30
python3 ./test.py -f 2-query/ltrim.py
python3 ./test.py -f 2-query/rtrim.py
C
cpwu 已提交
31
python3 ./test.py -f 2-query/length.py
C
cpwu 已提交
32 33 34
python3 ./test.py -f 2-query/char_length.py
python3 ./test.py -f 2-query/upper.py
python3 ./test.py -f 2-query/lower.py
C
cpwu 已提交
35 36
python3 ./test.py -f 2-query/join.py
python3 ./test.py -f 2-query/join2.py
C
cpwu 已提交
37
python3 ./test.py -f 2-query/cast.py
C
cpwu 已提交
38
python3 ./test.py -f 2-query/substr.py
C
cpwu 已提交
39 40
python3 ./test.py -f 2-query/union.py
python3 ./test.py -f 2-query/union1.py
C
cpwu 已提交
41 42 43 44
python3 ./test.py -f 2-query/concat.py
python3 ./test.py -f 2-query/concat2.py
python3 ./test.py -f 2-query/concat_ws.py
python3 ./test.py -f 2-query/concat_ws2.py
45
python3 ./test.py -f 2-query/check_tsdb.py
C
cpwu 已提交
46 47
python3 ./test.py -f 2-query/spread.py
python3 ./test.py -f 2-query/hyperloglog.py
C
cpwu 已提交
48
python3 ./test.py -f 2-query/explain.py
C
cpwu 已提交
49
python3 ./test.py -f 2-query/leastsquares.py
C
cpwu 已提交
50

J
jiacy-jcy 已提交
51

J
update  
jiacy-jcy 已提交
52
python3 ./test.py -f 2-query/timezone.py
J
Jason-Jia 已提交
53 54
python3 ./test.py -f 2-query/Now.py
python3 ./test.py -f 2-query/Today.py
J
jiacy-jcy 已提交
55 56 57
python3 ./test.py -f 2-query/max.py
python3 ./test.py -f 2-query/min.py
python3 ./test.py -f 2-query/count.py
J
update  
jiacy-jcy 已提交
58
python3 ./test.py -f 2-query/last.py
J
jiacy-jcy 已提交
59
python3 ./test.py -f 2-query/first.py
J
jiacy-jcy 已提交
60
python3 ./test.py -f 2-query/To_iso8601.py
J
update  
jiacy-jcy 已提交
61 62
python3 ./test.py -f 2-query/To_unixtimestamp.py
python3 ./test.py -f 2-query/timetruncate.py
J
jiacy-jcy 已提交
63
python3 ./test.py -f 2-query/diff.py
J
jiacy-jcy 已提交
64
python3 ./test.py -f 2-query/Timediff.py
65
python3 ./test.py -f 2-query/json_tag.py
W
wenzhouwww@live.cn 已提交
66

J
jiacy-jcy 已提交
67 68
python3 ./test.py -f 2-query/top.py
python3 ./test.py -f 2-query/bottom.py
J
jiacy-jcy 已提交
69 70
python3 ./test.py -f 2-query/percentile.py
python3 ./test.py -f 2-query/apercentile.py
W
wenzhouwww@live.cn 已提交
71 72
python3 ./test.py -f 2-query/abs.py
python3 ./test.py -f 2-query/ceil.py
W
wenzhouwww@live.cn 已提交
73 74
python3 ./test.py -f 2-query/floor.py
python3 ./test.py -f 2-query/round.py
W
wenzhouwww@live.cn 已提交
75 76
python3 ./test.py -f 2-query/log.py
python3 ./test.py -f 2-query/pow.py
77
python3 ./test.py -f 2-query/sqrt.py
W
wenzhouwww@live.cn 已提交
78
python3 ./test.py -f 2-query/sin.py
W
wenzhouwww@live.cn 已提交
79
python3 ./test.py -f 2-query/cos.py
80
python3 ./test.py -f 2-query/tan.py
81 82
python3 ./test.py -f 2-query/arcsin.py
python3 ./test.py -f 2-query/arccos.py
J
jiajingbin 已提交
83
python3 ./test.py -f 2-query/arctan.py
84
python3 ./test.py -f 2-query/query_cols_tags_and_or.py
C
cpwu 已提交
85
# python3 ./test.py -f 2-query/nestedQuery.py
C
cpwu 已提交
86
# TD-15983 subquery output duplicate name column.
87 88
# Please Xiangyang Guo modify the following script
# python3 ./test.py -f 2-query/nestedQuery_str.py
J
jiacy-jcy 已提交
89

90
python3 ./test.py -f 2-query/avg.py
91
python3 ./test.py -f 2-query/elapsed.py
W
wenzhouwww@live.cn 已提交
92
python3 ./test.py -f 2-query/csum.py
W
wenzhouwww@live.cn 已提交
93 94
python3 ./test.py -f 2-query/mavg.py
python3 ./test.py -f 2-query/diff.py
W
wenzhouwww@live.cn 已提交
95
python3 ./test.py -f 2-query/sample.py
W
wenzhouwww@live.cn 已提交
96
python3 ./test.py -f 2-query/function_diff.py
W
wenzhouwww@live.cn 已提交
97
python3 ./test.py -f 2-query/unique.py
J
update  
jiacy-jcy 已提交
98
python3 ./test.py -f 2-query/stateduration.py
99 100
python3 ./test.py -f 2-query/function_stateduration.py
python3 ./test.py -f 2-query/statecount.py
101
python3 ./test.py -f 2-query/tail.py
wmmhello's avatar
wmmhello 已提交
102
python3 ./test.py -f 2-query/ttl_comment.py
W
wenzhouwww@live.cn 已提交
103 104
python3 ./test.py -f 2-query/distribute_agg_count.py
python3 ./test.py -f 2-query/distribute_agg_max.py
105
python3 ./test.py -f 2-query/distribute_agg_min.py
106
python3 ./test.py -f 2-query/distribute_agg_sum.py
107
python3 ./test.py -f 2-query/distribute_agg_spread.py
108
python3 ./test.py -f 2-query/distribute_agg_apercentile.py
109
python3 ./test.py -f 2-query/distribute_agg_avg.py
110
python3 ./test.py -f 2-query/distribute_agg_stddev.py
W
wenzhouwww@live.cn 已提交
111
python3 ./test.py -f 2-query/twa.py
W
wenzhouwww@live.cn 已提交
112

haoranc's avatar
haoranc 已提交
113
python3 ./test.py -f 6-cluster/5dnode1mnode.py 
haoranc's avatar
haoranc 已提交
114
python3 ./test.py -f 6-cluster/5dnode2mnode.py 
haoranc's avatar
haoranc 已提交
115
python3 ./test.py -f 6-cluster/5dnode3mnodeStop.py -N 5 -M 3
haoranc's avatar
haoranc 已提交
116
# python3 ./test.py -f 6-cluster/5dnode3mnodeDrop.py -N 5
haoranc's avatar
haoranc 已提交
117
# BUG python3 ./test.py -f 6-cluster/5dnode3mnodeStopInsert.py 
haoranc's avatar
haoranc 已提交
118

S
Shengliang Guan 已提交
119
python3 ./test.py -f 7-tmq/basic5.py
P
plum-lihui 已提交
120
python3 ./test.py -f 7-tmq/subscribeDb.py
W
update  
wenzhouwww@live.cn 已提交
121
python3 ./test.py -f 7-tmq/subscribeDb0.py
P
plum-lihui 已提交
122
python3 ./test.py -f 7-tmq/subscribeDb1.py
L
Liu Jicong 已提交
123 124
python3 ./test.py -f 7-tmq/subscribeDb2.py
python3 ./test.py -f 7-tmq/subscribeDb3.py
P
plum-lihui 已提交
125
python3 ./test.py -f 7-tmq/subscribeStb.py
P
plum-lihui 已提交
126
python3 ./test.py -f 7-tmq/subscribeStb0.py
P
plum-lihui 已提交
127
python3 ./test.py -f 7-tmq/subscribeStb1.py
W
update  
wenzhouwww@live.cn 已提交
128 129 130
python3 ./test.py -f 7-tmq/subscribeStb2.py
python3 ./test.py -f 7-tmq/subscribeStb3.py
python3 ./test.py -f 7-tmq/subscribeStb4.py
P
plum-lihui 已提交
131
python3 ./test.py -f 7-tmq/db.py
P
plum-lihui 已提交
132
python3 ./test.py -f 7-tmq/tmqError.py
P
plum-lihui 已提交
133
python3 ./test.py -f 7-tmq/schema.py
P
plum-lihui 已提交
134
python3 ./test.py -f 7-tmq/stbFilter.py
P
plum-lihui 已提交
135
python3 ./test.py -f 7-tmq/tmqCheckData.py
P
plum-lihui 已提交
136
python3 ./test.py -f 7-tmq/tmqUdf.py
P
plum-lihui 已提交
137
#python3 ./test.py -f 7-tmq/tmq3mnodeSwitch.py -N 5
P
plum-lihui 已提交
138
python3 ./test.py -f 7-tmq/tmqConsumerGroup.py