Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
avocado
提交
924f3a51
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,发现更多精彩内容 >>
未验证
提交
924f3a51
编写于
10月 16, 2017
作者:
A
Amador Pahim
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'ldoktor-manual-selftest'
Signed-off-by:
N
Amador Pahim
<
apahim@redhat.com
>
上级
d43eb649
4ffe79a3
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
8 addition
and
4 deletion
+8
-4
avocado/core/test.py
avocado/core/test.py
+1
-1
avocado/utils/astring.py
avocado/utils/astring.py
+2
-2
selftests/unit/test_test.py
selftests/unit/test_test.py
+1
-1
spell.ignore
spell.ignore
+4
-0
未找到文件。
avocado/core/test.py
浏览文件 @
924f3a51
...
...
@@ -165,7 +165,7 @@ class TestID(object):
class
TestData
(
object
):
"""
Class that adds the
h
ability for tests to have access to data files
Class that adds the ability for tests to have access to data files
Writers of new test types can change the completely change the behavior
and still be compatible by providing an :attr:`DATA_SOURCES` attribute
...
...
avocado/utils/astring.py
浏览文件 @
924f3a51
...
...
@@ -231,7 +231,7 @@ def string_safe_encode(input_str):
People tend to mix unicode streams with encoded strings. This function
tries to replace any input with a valid utf-8 encoded ascii stream.
On Python 3, it's a terrible idea to try to mess with encoding
s
,
On Python 3, it's a terrible idea to try to mess with encoding,
so this function is limited to converting other types into
strings, such as numeric values that are often the members of a
matrix.
...
...
@@ -274,7 +274,7 @@ def string_to_safe_path(input_str):
try
:
return
input_str
.
translate
(
_FS_TRANSLATE
)
except
TypeError
:
# Deal with incorrect encoding
s
# Deal with incorrect encoding
for
bad_chr
in
FS_UNSAFE_CHARS
:
input_str
=
input_str
.
replace
(
bad_chr
,
"_"
)
return
input_str
selftests/unit/test_test.py
浏览文件 @
924f3a51
...
...
@@ -98,7 +98,7 @@ class TestClassTestUnit(unittest.TestCase):
def
test_data_dir
(
self
):
"""
Tests that a valid datadir exists foll
w
owing the test filename
Tests that a valid datadir exists following the test filename
"""
max_length_name
=
os
.
path
.
join
(
self
.
tmpdir
,
"a"
*
250
)
tst
=
self
.
_get_fake_filename_test
(
max_length_name
)
...
...
spell.ignore
浏览文件 @
924f3a51
...
...
@@ -445,3 +445,7 @@ multipathd
sda
sdb
href
formatter
parsers
lf
uncompressing
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录