Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
avocado
提交
6b02360d
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看板
未验证
提交
6b02360d
编写于
5月 25, 2017
作者:
A
Amador Pahim
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'clebergnu-selftest_time_sensitive_level_1'
Signed-off-by:
N
Amador Pahim
<
apahim@redhat.com
>
上级
e06f0aeb
1736c1e5
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
18 addition
and
0 deletion
+18
-0
selftests/functional/test_basic.py
selftests/functional/test_basic.py
+12
-0
selftests/functional/test_loader.py
selftests/functional/test_loader.py
+6
-0
未找到文件。
selftests/functional/test_basic.py
浏览文件 @
6b02360d
...
...
@@ -275,6 +275,9 @@ class RunnerOperationTest(unittest.TestCase):
self
.
assertIn
(
"Runner error occurred: Test reports unsupported"
,
results
[
"tests"
][
0
][
"fail_reason"
])
@
unittest
.
skipIf
(
int
(
os
.
environ
.
get
(
"AVOCADO_CHECK_LEVEL"
,
0
))
<
1
,
"Skipping test that take a long time to run, are "
"resource intensive or time sensitve"
)
def
test_hanged_test_with_status
(
self
):
""" Check that avocado handles hanged tests properly """
os
.
chdir
(
basedir
)
...
...
@@ -535,6 +538,9 @@ class RunnerOperationTest(unittest.TestCase):
result
.
stdout
)
@
unittest
.
skipIf
(
not
READ_BINARY
,
"read binary not available."
)
@
unittest
.
skipIf
(
int
(
os
.
environ
.
get
(
"AVOCADO_CHECK_LEVEL"
,
0
))
<
1
,
"Skipping test that take a long time to run, are "
"resource intensive or time sensitve"
)
def
test_read
(
self
):
os
.
chdir
(
basedir
)
cmd
=
"%s run --sysinfo=off --job-results-dir %%s %%s"
%
AVOCADO
...
...
@@ -698,6 +704,9 @@ class RunnerSimpleTest(unittest.TestCase):
self
.
assertEqual
(
result
.
exit_status
,
expected_rc
,
"Avocado did not return rc %d:
\n
%s"
%
(
expected_rc
,
result
))
@
unittest
.
skipIf
(
int
(
os
.
environ
.
get
(
"AVOCADO_CHECK_LEVEL"
,
0
))
<
1
,
"Skipping test that take a long time to run, are "
"resource intensive or time sensitve"
)
def
test_runner_sleep_fail_sleep_timing
(
self
):
"""
Sleeptest is supposed to take 1 second, let's make a sandwich of
...
...
@@ -750,6 +759,9 @@ class RunnerSimpleTest(unittest.TestCase):
(
expected_rc
,
result
))
@
unittest
.
skipIf
(
not
SLEEP_BINARY
,
'sleep binary not available'
)
@
unittest
.
skipIf
(
int
(
os
.
environ
.
get
(
"AVOCADO_CHECK_LEVEL"
,
0
))
<
1
,
"Skipping test that take a long time to run, are "
"resource intensive or time sensitve"
)
def
test_kill_stopped_sleep
(
self
):
proc
=
aexpect
.
Expect
(
"%s run 60 --job-results-dir %s "
"--external-runner %s --sysinfo=off "
...
...
selftests/functional/test_loader.py
浏览文件 @
6b02360d
...
...
@@ -180,6 +180,9 @@ class LoaderTestFunctional(unittest.TestCase):
def
test_pass
(
self
):
self
.
_test
(
'passtest.py'
,
AVOCADO_TEST_OK
,
'INSTRUMENTED'
)
@
unittest
.
skipIf
(
int
(
os
.
environ
.
get
(
"AVOCADO_CHECK_LEVEL"
,
0
))
<
1
,
"Skipping test that take a long time to run, are "
"resource intensive or time sensitve"
)
def
test_sleep_a_lot
(
self
):
"""
Verifies that the test loader, at list time, does not load the Python
...
...
@@ -239,6 +242,9 @@ class LoaderTestFunctional(unittest.TestCase):
%
(
AVOCADO
,
self
.
tmpdir
,
mytest
))
self
.
_run_with_timeout
(
cmd_line
,
5
)
@
unittest
.
skipIf
(
int
(
os
.
environ
.
get
(
"AVOCADO_CHECK_LEVEL"
,
0
))
<
1
,
"Skipping test that take a long time to run, are "
"resource intensive or time sensitve"
)
def
test_simple_using_main
(
self
):
mytest
=
script
.
TemporaryScript
(
"simple_using_main.py"
,
AVOCADO_TEST_SIMPLE_USING_MAIN
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录