Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
63503e91
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看板
提交
63503e91
编写于
6月 19, 2020
作者:
S
Shuduo Sang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add spend time statistics.
上级
8754b640
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
17 addition
and
10 deletion
+17
-10
tests/test-all.sh
tests/test-all.sh
+17
-10
未找到文件。
tests/test-all.sh
浏览文件 @
63503e91
...
@@ -11,9 +11,12 @@ function runSimCaseOneByOne {
...
@@ -11,9 +11,12 @@ function runSimCaseOneByOne {
while
read
-r
line
;
do
while
read
-r
line
;
do
if
[[
$line
=
~ ^run.
*
]]
;
then
if
[[
$line
=
~ ^run.
*
]]
;
then
case
=
`
echo
$line
|
awk
'{print $NF}'
`
case
=
`
echo
$line
|
awk
'{print $NF}'
`
start_time
=
`
date
+%s
`
./test.sh
-f
$case
>
/dev/null 2>&1
&&
\
./test.sh
-f
$case
>
/dev/null 2>&1
&&
\
echo
-e
"
${
GREEN
}
$case
success
${
NC
}
"
||
\
echo
-e
"
${
GREEN
}
$case
success
${
NC
}
"
|
tee
-a
out.log
|
|
\
echo
-e
"
${
RED
}
$case
failed
${
NC
}
"
|
tee
-a
out.log
echo
-e
"
${
RED
}
$case
failed
${
NC
}
"
|
tee
-a
out.log
end_time
=
`
date
+%s
`
echo
execution
time
of
$case
was
`
expr
$end_time
-
$start_time
`
s.
|
tee
-a
out.log
fi
fi
done
<
$1
done
<
$1
}
}
...
@@ -23,9 +26,12 @@ function runPyCaseOneByOne {
...
@@ -23,9 +26,12 @@ function runPyCaseOneByOne {
if
[[
$line
=
~ ^python.
*
]]
;
then
if
[[
$line
=
~ ^python.
*
]]
;
then
if
[[
$line
!=
*
sleep
*
]]
;
then
if
[[
$line
!=
*
sleep
*
]]
;
then
case
=
`
echo
$line
|awk
'{print $NF}'
`
case
=
`
echo
$line
|awk
'{print $NF}'
`
start_time
=
`
date
+%s
`
$line
>
/dev/null 2>&1
&&
\
$line
>
/dev/null 2>&1
&&
\
echo
-e
"
${
GREEN
}
$case
success
${
NC
}
"
||
\
echo
-e
"
${
GREEN
}
$case
success
${
NC
}
"
|
tee
-a
pytest-out.log
|
|
\
echo
-e
"
${
RED
}
$case
failed
${
NC
}
"
|
tee
-a
pytest-out.log
echo
-e
"
${
RED
}
$case
failed
${
NC
}
"
|
tee
-a
pytest-out.log
end_time
=
`
date
+%s
`
echo
execution
time
of
$case
was
`
expr
$end_time
-
$start_time
`
s.
|
tee
-a
pytest-out.log
else
else
$line
>
/dev/null 2>&1
$line
>
/dev/null 2>&1
fi
fi
...
@@ -36,11 +42,11 @@ function runPyCaseOneByOne {
...
@@ -36,11 +42,11 @@ function runPyCaseOneByOne {
totalFailed
=
0
totalFailed
=
0
totalPyFailed
=
0
totalPyFailed
=
0
current
_dir
=
`
pwd
`
tests
_dir
=
`
pwd
`
if
[
"
$2
"
!=
"python"
]
;
then
if
[
"
$2
"
!=
"python"
]
;
then
echo
"### run TSIM test case ###"
echo
"### run TSIM test case ###"
cd
$
current
_dir
/script
cd
$
tests
_dir
/script
[
-f
out.log
]
&&
rm
-f
out.log
[
-f
out.log
]
&&
rm
-f
out.log
if
[
"
$1
"
==
"cron"
]
;
then
if
[
"
$1
"
==
"cron"
]
;
then
...
@@ -61,13 +67,13 @@ if [ "$2" != "python" ]; then
...
@@ -61,13 +67,13 @@ if [ "$2" != "python" ]; then
totalSuccess
=
`
expr
$totalSuccess
-
$totalBasic
`
totalSuccess
=
`
expr
$totalSuccess
-
$totalBasic
`
fi
fi
echo
-e
"
${
GREEN
}
### Total
$totalSuccess
TSIM case(s) succeed! ###
${
NC
}
"
echo
-e
"
\n
${
GREEN
}
### Total
$totalSuccess
TSIM case(s) succeed! ###
${
NC
}
"
totalFailed
=
`
grep
'failed\|fault'
out.log |
wc
-l
`
totalFailed
=
`
grep
'failed\|fault'
out.log |
wc
-l
`
# echo -e "${RED} ### Total $totalFailed TSIM case(s) failed! ### ${NC}"
# echo -e "${RED} ### Total $totalFailed TSIM case(s) failed! ### ${NC}"
if
[
"
$totalFailed
"
-ne
"0"
]
;
then
if
[
"
$totalFailed
"
-ne
"0"
]
;
then
echo
-e
"
${
RED
}
### Total
$totalFailed
TSIM case(s) failed! ###
${
NC
}
"
echo
-e
"
\n
${
RED
}
### Total
$totalFailed
TSIM case(s) failed! ###
${
NC
}
"
# exit $totalFailed
# exit $totalFailed
fi
fi
...
@@ -76,9 +82,10 @@ fi
...
@@ -76,9 +82,10 @@ fi
if
[
"
$2
"
!=
"sim"
]
;
then
if
[
"
$2
"
!=
"sim"
]
;
then
echo
"### run Python test case ###"
echo
"### run Python test case ###"
cd
$tests_dir
IN_TDINTERNAL
=
"community"
IN_TDINTERNAL
=
"community"
if
[[
"
$
current
_dir
"
==
*
"
$IN_TDINTERNAL
"
*
]]
;
then
if
[[
"
$
tests
_dir
"
==
*
"
$IN_TDINTERNAL
"
*
]]
;
then
cd
../..
cd
../..
else
else
cd
../
cd
../
...
@@ -94,7 +101,7 @@ if [ "$2" != "sim" ]; then
...
@@ -94,7 +101,7 @@ if [ "$2" != "sim" ]; then
export
LD_LIBRARY_PATH
=
$TOP_DIR
/
$LIB_DIR
:
$LD_LIBRARY_PATH
export
LD_LIBRARY_PATH
=
$TOP_DIR
/
$LIB_DIR
:
$LD_LIBRARY_PATH
cd
$
current
_dir
/pytest
cd
$
tests
_dir
/pytest
[
-f
pytest-out.log
]
&&
rm
-f
pytest-out.log
[
-f
pytest-out.log
]
&&
rm
-f
pytest-out.log
...
@@ -111,12 +118,12 @@ if [ "$2" != "sim" ]; then
...
@@ -111,12 +118,12 @@ if [ "$2" != "sim" ]; then
totalPySuccess
=
`
grep
'success'
pytest-out.log |
wc
-l
`
totalPySuccess
=
`
grep
'success'
pytest-out.log |
wc
-l
`
if
[
"
$totalPySuccess
"
-gt
"0"
]
;
then
if
[
"
$totalPySuccess
"
-gt
"0"
]
;
then
echo
-e
"
${
GREEN
}
### Total
$totalPySuccess
python case(s) succeed! ###
${
NC
}
"
echo
-e
"
\n
${
GREEN
}
### Total
$totalPySuccess
python case(s) succeed! ###
${
NC
}
"
fi
fi
totalPyFailed
=
`
grep
'failed\|fault'
pytest-out.log |
wc
-l
`
totalPyFailed
=
`
grep
'failed\|fault'
pytest-out.log |
wc
-l
`
if
[
"
$totalPyFailed
"
-ne
"0"
]
;
then
if
[
"
$totalPyFailed
"
-ne
"0"
]
;
then
echo
-e
"
${
RED
}
### Total
$totalPyFailed
python case(s) failed! ###
${
NC
}
"
echo
-e
"
\n
${
RED
}
### Total
$totalPyFailed
python case(s) failed! ###
${
NC
}
"
# exit $totalPyFailed
# exit $totalPyFailed
fi
fi
fi
fi
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录