Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
1980ecea
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
1980ecea
编写于
6月 19, 2020
作者:
S
Shuduo Sang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
make pytest find so lib automatically
[TD-693]
上级
c9860ac5
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
39 addition
and
12 deletion
+39
-12
tests/test-all.sh
tests/test-all.sh
+39
-12
未找到文件。
tests/test-all.sh
浏览文件 @
1980ecea
#!/bin/bash
# Color setting
RED
=
'\033[0;31m'
GREEN
=
'\033[1;32m'
GREEN_DARK
=
'\033[0;32m'
GREEN_UNDERLINE
=
'\033[4;32m'
NC
=
'\033[0m'
function
runSimCaseOneByOne
{
while
read
-r
line
;
do
if
[[
$line
=
~ ^run.
*
]]
;
then
case
=
`
echo
$line
|
awk
'{print $2}'
`
./test.sh
-f
$case
2>&1
|
grep
'success\|failed\|fault'
|
grep
-v
'default'
|
tee
-a
out.log
case
=
`
echo
$line
|
awk
'{print $NF}'
`
./test.sh
-f
$case
>
/dev/null
&&
\
echo
-e
"
${
GREEN
}
$case
success
${
NC
}
"
||
\
echo
-e
"
${
RED
}
$case
failed
${
NC
}
"
|
tee
-a
out.log
fi
done
<
$1
}
...
...
@@ -12,22 +21,21 @@ function runSimCaseOneByOne {
function
runPyCaseOneByOne
{
while
read
-r
line
;
do
if
[[
$line
=
~ ^python.
*
]]
;
then
$line
2>&1
|
grep
'successfully executed\|failed\|fault'
|
grep
-v
'default'
|
tee
-a
pytest-out.log
if
[[
$line
!=
*
sleep
*
]]
;
then
case
=
`
echo
$line
|awk
'{print $NF}'
`
$line
>
/dev/null 2>&1
&&
\
echo
-e
"
${
GREEN
}
$case
success
${
NC
}
"
||
\
echo
-e
"
${
RED
}
$case
failed
${
NC
}
"
|
tee
-a
pytest-out.log
else
$line
>
/dev/null 2>&1
fi
fi
done
<
$1
}
# Color setting
RED
=
'\033[0;31m'
GREEN
=
'\033[1;32m'
GREEN_DARK
=
'\033[0;32m'
GREEN_UNDERLINE
=
'\033[4;32m'
NC
=
'\033[0m'
totalFailed
=
0
totalPyFailed
=
0
current_dir
=
`
pwd
`
if
[
"
$2
"
!=
"python"
]
;
then
...
...
@@ -67,6 +75,25 @@ fi
if
[
"
$2
"
!=
"sim"
]
;
then
echo
"### run Python test case ###"
IN_TDINTERNAL
=
"community"
if
[[
"
$current_dir
"
==
*
"
$IN_TDINTERNAL
"
*
]]
;
then
cd
../..
else
cd
../
fi
TOP_DIR
=
`
pwd
`
TAOSLIB_DIR
=
`
find
.
-name
"libtaos.so"
|grep
-w
lib|head
-n1
`
if
[[
"
$TAOSLIB_DIR
"
==
*
"
$IN_TDINTERNAL
"
*
]]
;
then
LIB_DIR
=
`
find
.
-name
"libtaos.so"
|grep
-w
lib|head
-n1
|cut
-d
'/'
--fields
=
2,3,4,5
`
else
LIB_DIR
=
`
find
.
-name
"libtaos.so"
|grep
-w
lib|head
-n1
|cut
-d
'/'
--fields
=
2,3,4
`
fi
export
LD_LIBRARY_PATH
=
$TOP_DIR
/
$LIB_DIR
:
$LD_LIBRARY_PATH
cd
$current_dir
/pytest
[
-f
pytest-out.log
]
&&
rm
-f
pytest-out.log
...
...
@@ -81,7 +108,7 @@ if [ "$2" != "sim" ]; then
echo
"### run Python smoke test ###"
runPyCaseOneByOne smoketest.sh
fi
totalPySuccess
=
`
grep
'success
fully executed
'
pytest-out.log |
wc
-l
`
totalPySuccess
=
`
grep
'success'
pytest-out.log |
wc
-l
`
if
[
"
$totalPySuccess
"
-gt
"0"
]
;
then
echo
-e
"
${
GREEN
}
### Total
$totalPySuccess
python case(s) succeed! ###
${
NC
}
"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录