Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
avocado
提交
4ec2576c
A
avocado
项目概览
openeuler
/
avocado
通知
0
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
A
avocado
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
4ec2576c
编写于
8月 30, 2016
作者:
A
Amador Pahim
提交者:
GitHub
8月 30, 2016
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1414 from ldoktor/runner2mux-cleanup
avocado.core: Cleanup runner->multiplexer API
上级
f004abe2
9a3b671a
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
35 addition
and
16 deletion
+35
-16
avocado/core/multiplexer.py
avocado/core/multiplexer.py
+10
-15
avocado/core/runner.py
avocado/core/runner.py
+25
-1
未找到文件。
avocado/core/multiplexer.py
浏览文件 @
4ec2576c
...
...
@@ -412,22 +412,17 @@ class Mux(object):
else
:
return
len
(
test_suite
)
def
itertests
(
self
,
template
):
def
itertests
(
self
):
"""
Processes the template and yields test definition with proper params
Yield variant-id and test params
:yield (variant-id, (list of leaves, list of multiplex paths))
"""
if
self
.
variants
:
# Copy template and modify it's params
i
=
None
i
f
self
.
_has_multiple_variants
:
for
i
,
variant
in
enumerate
(
self
.
variants
,
1
):
test_factory
=
[
template
[
0
],
template
[
1
].
copy
()]
if
"params"
in
test_factory
[
1
]:
msg
=
(
"Unable to multiplex test %s, params are already "
"present in test factory: %s"
%
(
test_factory
[
0
],
test_factory
[
1
]))
raise
ValueError
(
msg
)
test_factory
[
1
][
'params'
]
=
(
variant
,
self
.
_mux_path
)
yield
test_factory
,
i
if
self
.
_has_multiple_variants
else
None
if
i
is
None
:
# No variants, use template
yield
template
,
None
yield
i
,
(
variant
,
self
.
_mux_path
)
else
:
yield
None
,
(
iter
(
self
.
variants
).
next
(),
self
.
_mux_path
)
else
:
# No variants, use template
yield
templat
e
,
None
yield
Non
e
,
None
avocado/core/runner.py
浏览文件 @
4ec2576c
...
...
@@ -454,6 +454,29 @@ class TestRunner(object):
return
False
return
True
@
staticmethod
def
_iter_variants
(
template
,
mux
):
"""
Iterate through variants and set the params/variants accordingly.
:param template: test template
:param mux: the Mux object containing the variants
:return: Yields tuple(test_factory including params, variant id)
:raises ValueError: When variant and template declare params.
"""
for
variant
,
params
in
mux
.
itertests
():
if
params
:
if
"params"
in
template
[
1
]:
msg
=
(
"Unable to multiplex test %s, params are already "
"present in test factory: %s"
%
(
template
[
0
],
template
[
1
]))
raise
ValueError
(
msg
)
factory
=
[
template
[
0
],
template
[
1
].
copy
()]
factory
[
1
][
"params"
]
=
params
else
:
factory
=
template
yield
factory
,
variant
def
run_suite
(
self
,
test_suite
,
mux
,
timeout
=
0
,
replay_map
=
None
,
test_result_total
=
0
):
"""
...
...
@@ -483,7 +506,8 @@ class TestRunner(object):
test_template
[
1
][
'base_logdir'
]
=
self
.
job
.
logdir
test_template
[
1
][
'job'
]
=
self
.
job
break_loop
=
False
for
test_factory
,
variant
in
mux
.
itertests
(
test_template
):
for
test_factory
,
variant
in
self
.
_iter_variants
(
test_template
,
mux
):
index
+=
1
test_parameters
=
test_factory
[
1
]
name
=
test_parameters
.
get
(
"name"
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录