Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
9887a58e
T
TDengine
项目概览
慢慢CG
/
TDengine
与 Fork 源项目一致
Fork自
taosdata / TDengine
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
9887a58e
编写于
3月 25, 2021
作者:
P
Ping Xiao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TD-1139]<test>: add c examples into CI
上级
8ffcf8af
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
91 addition
and
5 deletion
+91
-5
Jenkinsfile
Jenkinsfile
+5
-0
tests/Jenkinsfile
tests/Jenkinsfile
+5
-0
tests/test-all.sh
tests/test-all.sh
+81
-5
未找到文件。
Jenkinsfile
浏览文件 @
9887a58e
...
...
@@ -273,6 +273,11 @@ pipeline {
cd ${WKC}/tests
./test-all.sh b7fq
date'''
sh
'''
date
cd ${WKC}/tests
./test-all.sh full example
date'''
}
}
}
...
...
tests/Jenkinsfile
浏览文件 @
9887a58e
...
...
@@ -162,6 +162,11 @@ pipeline {
cd ${WKC}/tests
./test-all.sh b3
date'''
sh
'''
date
cd ${WKC}/tests
./test-all.sh full example
date'''
}
}
...
...
tests/test-all.sh
浏览文件 @
9887a58e
...
...
@@ -194,9 +194,10 @@ totalFailed=0
totalPyFailed
=
0
totalJDBCFailed
=
0
totalUnitFailed
=
0
totalExampleFailed
=
0
corepath
=
`
grep
-oP
'.*(?=core_)'
/proc/sys/kernel/core_pattern||grep
-oP
'.*(?=core-)'
/proc/sys/kernel/core_pattern
`
if
[
"
$2
"
!=
"jdbc"
]
&&
[
"
$2
"
!=
"python"
]
&&
[
"
$2
"
!=
"unit"
]
;
then
if
[
"
$2
"
!=
"jdbc"
]
&&
[
"
$2
"
!=
"python"
]
&&
[
"
$2
"
!=
"unit"
]
&&
[
"
$2
"
!=
"example"
]
;
then
echo
"### run TSIM test case ###"
cd
$tests_dir
/script
...
...
@@ -265,7 +266,7 @@ if [ "$2" != "jdbc" ] && [ "$2" != "python" ] && [ "$2" != "unit" ]; then
fi
fi
if
[
"
$2
"
!=
"sim"
]
&&
[
"
$2
"
!=
"jdbc"
]
&&
[
"
$2
"
!=
"unit"
]
;
then
if
[
"
$2
"
!=
"sim"
]
&&
[
"
$2
"
!=
"jdbc"
]
&&
[
"
$2
"
!=
"unit"
]
&&
[
"
$2
"
!=
"example"
]
;
then
echo
"### run Python test case ###"
cd
$tests_dir
...
...
@@ -334,7 +335,7 @@ if [ "$2" != "sim" ] && [ "$2" != "jdbc" ] && [ "$2" != "unit" ]; then
fi
if
[
"
$2
"
!=
"sim"
]
&&
[
"
$2
"
!=
"python"
]
&&
[
"
$2
"
!=
"unit"
]
&&
[
"
$1
"
==
"full"
]
;
then
if
[
"
$2
"
!=
"sim"
]
&&
[
"
$2
"
!=
"python"
]
&&
[
"
$2
"
!=
"unit"
]
&&
[
"
$2
"
!=
"example"
]
&&
[
"
$1
"
==
"full"
]
;
then
echo
"### run JDBC test cases ###"
cd
$tests_dir
...
...
@@ -378,7 +379,7 @@ if [ "$2" != "sim" ] && [ "$2" != "python" ] && [ "$2" != "unit" ] && [ "$1" ==
dohavecore 1
fi
if
[
"
$2
"
!=
"sim"
]
&&
[
"
$2
"
!=
"python"
]
&&
[
"
$2
"
!=
"jdbc"
]
&&
[
"
$1
"
==
"full"
]
;
then
if
[
"
$2
"
!=
"sim"
]
&&
[
"
$2
"
!=
"python"
]
&&
[
"
$2
"
!=
"jdbc"
]
&&
[
"
$2
"
!=
"example"
]
&&
[
"
$1
"
==
"full"
]
;
then
echo
"### run Unit tests ###"
stopTaosd
...
...
@@ -414,5 +415,80 @@ if [ "$2" != "sim" ] && [ "$2" != "python" ] && [ "$2" != "jdbc" ] && [ "$1" ==
dohavecore 1
fi
if
[
"
$2
"
!=
"sim"
]
&&
[
"
$2
"
!=
"python"
]
&&
[
"
$2
"
!=
"jdbc"
]
&&
[
"
$2
"
!=
"unit"
]
&&
[
"
$1
"
==
"full"
]
;
then
echo
"### run Example tests ###"
exit
$((
$totalFailed
+
$totalPyFailed
+
$totalJDBCFailed
+
$totalUnitFailed
))
stopTaosd
cd
$tests_dir
if
[[
"
$tests_dir
"
==
*
"
$IN_TDINTERNAL
"
*
]]
;
then
cd
../../
else
cd
../
fi
pwd
cd
debug/build/bin
rm
-rf
/var/lib/taos/
*
nohup
./taosd
-c
/etc/taos/
>
/dev/null 2>&1 &
echo
"sleeping for 30 seconds"
#sleep 30
cd
$tests_dir
echo
"current dir: "
pwd
cd
examples/c
echo
"building applications"
make
>
/dev/null
totalExamplePass
=
0
echo
"Running tests"
./apitest
>
/dev/null 2>&1
if
[
$?
!=
"0"
]
;
then
echo
"prepare failed"
totalExampleFailed
=
`
expr
$totalExampleFailed
+ 1
`
else
echo
"prepare pass"
totalExamplePass
=
`
expr
$totalExamplePass
+ 1
`
fi
./prepare 127.0.0.1
>
/dev/null 2>&1
if
[
$?
!=
"0"
]
;
then
echo
"prepare failed"
totalExampleFailed
=
`
expr
$totalExampleFailed
+ 1
`
else
echo
"prepare pass"
totalExamplePass
=
`
expr
$totalExamplePass
+ 1
`
fi
./subscribe
-test
>
/dev/null 2>&1
if
[
$?
!=
"0"
]
;
then
echo
"prepare failed"
totalExampleFailed
=
`
expr
$totalExampleFailed
+ 1
`
else
echo
"prepare pass"
totalExamplePass
=
`
expr
$totalExamplePass
+ 1
`
fi
yes
|
./asyncdemo 127.0.0.1
test
1000 10
>
/dev/null 2>&1
if
[
$?
!=
"0"
]
;
then
echo
"prepare failed"
totalExampleFailed
=
`
expr
$totalExampleFailed
+ 1
`
else
echo
"prepare pass"
totalExamplePass
=
`
expr
$totalExamplePass
+ 1
`
fi
if
[
"
$totalExamplePass
"
-gt
"0"
]
;
then
echo
-e
"
\n
${
GREEN
}
### Total
$totalExamplePass
examples succeed! ###
${
NC
}
"
fi
if
[
"
$totalExampleFailed
"
-ne
"0"
]
;
then
echo
-e
"
\n
${
RED
}
### Total
$totalExampleFailed
examples failed! ###
${
NC
}
"
fi
dohavecore 1
fi
exit
$((
$totalFailed
+
$totalPyFailed
+
$totalJDBCFailed
+
$totalUnitFailed
+
$totalExampleFailed
))
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录