Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
9a3ad307
T
Third Party Harfbuzz
项目概览
OpenHarmony
/
Third Party Harfbuzz
1 年多 前同步成功
通知
0
Star
18
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Harfbuzz
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
9a3ad307
编写于
1月 09, 2018
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[test] Remove unused hb-diff-ngrams
上级
b6b46002
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
0 addition
and
32 deletion
+0
-32
test/shaping/Makefile.am
test/shaping/Makefile.am
+0
-1
test/shaping/hb-diff-ngrams
test/shaping/hb-diff-ngrams
+0
-5
test/shaping/hb_test_tools.py
test/shaping/hb_test_tools.py
+0
-26
未找到文件。
test/shaping/Makefile.am
浏览文件 @
9a3ad307
...
...
@@ -15,7 +15,6 @@ EXTRA_DIST += \
hb-diff
\
hb-diff-colorize
\
hb-diff-filter-failures
\
hb-diff-ngrams
\
hb-diff-stat
\
hb-unicode-decode
\
hb-unicode-encode
\
...
...
test/shaping/hb-diff-ngrams
已删除
100755 → 0
浏览文件 @
b6b46002
#!/usr/bin/env python
from
hb_test_tools
import
*
UtilMains
.
process_multiple_files
(
DiffSinks
.
print_ngrams
)
test/shaping/hb_test_tools.py
浏览文件 @
9a3ad307
...
...
@@ -293,32 +293,6 @@ class DiffSinks:
total
=
passed
+
failed
print
(
"%d out of %d tests passed. %d failed (%g%%)"
%
(
passed
,
total
,
failed
,
100.
*
failed
/
total
))
@
staticmethod
def
print_ngrams
(
f
,
ns
=
(
1
,
2
,
3
)):
gens
=
tuple
(
Ngram
.
generator
(
n
)
for
n
in
ns
)
allstats
=
Stats
()
allgrams
=
{}
for
key
,
lines
in
DiffHelpers
.
separate_test_cases
(
f
):
test
=
Test
(
lines
)
allstats
.
add
(
test
)
for
gen
in
gens
:
for
ngram
in
gen
(
test
.
unicodes
):
if
ngram
not
in
allgrams
:
allgrams
[
ngram
]
=
Stats
()
allgrams
[
ngram
].
add
(
test
)
importantgrams
=
{}
for
ngram
,
stats
in
allgrams
.
iteritems
():
if
stats
.
failed
.
count
>=
30
:
# for statistical reasons
importantgrams
[
ngram
]
=
stats
allgrams
=
importantgrams
del
importantgrams
for
ngram
,
stats
in
allgrams
.
iteritems
():
print
(
"zscore: %9f failed: %6d passed: %6d ngram: <%s>"
%
(
stats
.
zscore
(
allstats
),
stats
.
failed
.
count
,
stats
.
passed
.
count
,
','
.
join
(
"U+%04X"
%
u
for
u
in
ngram
)))
class
Test
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录