Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
f5359097
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看板
提交
f5359097
编写于
6月 27, 2019
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[test] Make Unicode tests strict against internal UCD
https://github.com/harfbuzz/harfbuzz/pull/1799
上级
d42264f1
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
22 addition
and
8 deletion
+22
-8
test/api/test-unicode.c
test/api/test-unicode.c
+22
-8
未找到文件。
test/api/test-unicode.c
浏览文件 @
f5359097
...
@@ -547,7 +547,7 @@ static const property_t properties[] =
...
@@ -547,7 +547,7 @@ static const property_t properties[] =
#undef PROPERTY
#undef PROPERTY
static
void
static
void
test_unicode_properties
(
gconstpointer
user_data
)
test_unicode_properties
(
gconstpointer
user_data
,
hb_bool_t
lenient
)
{
{
hb_unicode_funcs_t
*
uf
=
(
hb_unicode_funcs_t
*
)
user_data
;
hb_unicode_funcs_t
*
uf
=
(
hb_unicode_funcs_t
*
)
user_data
;
unsigned
int
i
,
j
;
unsigned
int
i
,
j
;
...
@@ -571,16 +571,30 @@ test_unicode_properties (gconstpointer user_data)
...
@@ -571,16 +571,30 @@ test_unicode_properties (gconstpointer user_data)
tests
=
p
->
tests_more
;
tests
=
p
->
tests_more
;
for
(
j
=
0
;
j
<
p
->
num_tests_more
;
j
++
)
{
for
(
j
=
0
;
j
<
p
->
num_tests_more
;
j
++
)
{
g_test_message
(
"Test %s more #%d: U+%04X"
,
p
->
name
,
j
,
tests
[
j
].
unicode
);
g_test_message
(
"Test %s more #%d: U+%04X"
,
p
->
name
,
j
,
tests
[
j
].
unicode
);
if
(
p
->
getter
(
uf
,
tests
[
j
].
unicode
)
!=
tests
[
j
].
value
)
{
if
(
lenient
)
{
g_test_message
(
"Soft fail: Received %x, expected %x"
,
p
->
getter
(
uf
,
tests
[
j
].
unicode
),
tests
[
j
].
value
);
if
(
p
->
getter
(
uf
,
tests
[
j
].
unicode
)
!=
tests
[
j
].
value
)
{
failed
=
TRUE
;
g_test_message
(
"Soft fail: Received %x, expected %x"
,
p
->
getter
(
uf
,
tests
[
j
].
unicode
),
tests
[
j
].
value
);
failed
=
TRUE
;
}
}
}
else
g_assert_cmphex
(
p
->
getter
(
uf
,
tests
[
j
].
unicode
),
==
,
tests
[
j
].
value
);
}
}
}
}
if
(
failed
)
if
(
failed
)
g_test_message
(
"Some property tests failed. You probably have an old version of one of the libraries used."
);
g_test_message
(
"Some property tests failed. You probably have an old version of one of the libraries used."
);
}
}
static
void
test_unicode_properties_lenient
(
gconstpointer
user_data
)
{
test_unicode_properties
(
user_data
,
TRUE
);
}
static
void
test_unicode_properties_strict
(
gconstpointer
user_data
)
{
test_unicode_properties
(
user_data
,
FALSE
);
}
static
hb_codepoint_t
static
hb_codepoint_t
default_value
(
hb_codepoint_t
_default_value
,
hb_codepoint_t
unicode
)
default_value
(
hb_codepoint_t
_default_value
,
hb_codepoint_t
unicode
)
...
@@ -663,7 +677,7 @@ test_unicode_chainup (void)
...
@@ -663,7 +677,7 @@ test_unicode_chainup (void)
g_assert
(
!
hb_unicode_funcs_is_immutable
(
uf2
));
g_assert
(
!
hb_unicode_funcs_is_immutable
(
uf2
));
hb_unicode_funcs_make_immutable
(
uf2
);
hb_unicode_funcs_make_immutable
(
uf2
);
test_unicode_properties
(
uf2
);
test_unicode_properties
_strict
(
uf2
);
hb_unicode_funcs_destroy
(
uf2
);
hb_unicode_funcs_destroy
(
uf2
);
...
@@ -934,16 +948,16 @@ main (int argc, char **argv)
...
@@ -934,16 +948,16 @@ main (int argc, char **argv)
hb_test_add
(
test_unicode_properties_nil
);
hb_test_add
(
test_unicode_properties_nil
);
hb_test_add
(
test_unicode_properties_empty
);
hb_test_add
(
test_unicode_properties_empty
);
hb_test_add_data_flavor
(
hb_unicode_funcs_get_default
(),
"default"
,
test_unicode_properties
);
hb_test_add_data_flavor
(
hb_unicode_funcs_get_default
(),
"default"
,
test_unicode_properties
_strict
);
hb_test_add_data_flavor
(
hb_unicode_funcs_get_default
(),
"default"
,
test_unicode_normalization
);
hb_test_add_data_flavor
(
hb_unicode_funcs_get_default
(),
"default"
,
test_unicode_normalization
);
hb_test_add_data_flavor
((
gconstpointer
)
script_roundtrip_default
,
"default"
,
test_unicode_script_roundtrip
);
hb_test_add_data_flavor
((
gconstpointer
)
script_roundtrip_default
,
"default"
,
test_unicode_script_roundtrip
);
#ifdef HAVE_GLIB
#ifdef HAVE_GLIB
hb_test_add_data_flavor
(
hb_glib_get_unicode_funcs
(),
"glib"
,
test_unicode_properties
);
hb_test_add_data_flavor
(
hb_glib_get_unicode_funcs
(),
"glib"
,
test_unicode_properties
_lenient
);
hb_test_add_data_flavor
(
hb_glib_get_unicode_funcs
(),
"glib"
,
test_unicode_normalization
);
hb_test_add_data_flavor
(
hb_glib_get_unicode_funcs
(),
"glib"
,
test_unicode_normalization
);
hb_test_add_data_flavor
((
gconstpointer
)
script_roundtrip_glib
,
"glib"
,
test_unicode_script_roundtrip
);
hb_test_add_data_flavor
((
gconstpointer
)
script_roundtrip_glib
,
"glib"
,
test_unicode_script_roundtrip
);
#endif
#endif
#ifdef HAVE_ICU
#ifdef HAVE_ICU
hb_test_add_data_flavor
(
hb_icu_get_unicode_funcs
(),
"icu"
,
test_unicode_properties
);
hb_test_add_data_flavor
(
hb_icu_get_unicode_funcs
(),
"icu"
,
test_unicode_properties
_lenient
);
hb_test_add_data_flavor
(
hb_icu_get_unicode_funcs
(),
"icu"
,
test_unicode_normalization
);
hb_test_add_data_flavor
(
hb_icu_get_unicode_funcs
(),
"icu"
,
test_unicode_normalization
);
hb_test_add_data_flavor
((
gconstpointer
)
script_roundtrip_icu
,
"icu"
,
test_unicode_script_roundtrip
);
hb_test_add_data_flavor
((
gconstpointer
)
script_roundtrip_icu
,
"icu"
,
test_unicode_script_roundtrip
);
#endif
#endif
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录