mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-06 14:05:05 +00:00
fix bots.
-Also disable partial instancing tests for now, cause the command option is wrapped by experimental_api
This commit is contained in:
parent
77b158c72d
commit
0aa5dafefd
4 changed files with 5 additions and 3 deletions
|
@ -72,7 +72,6 @@ EXTRA_DIST += \
|
|||
expected/collect_name_ids \
|
||||
expected/instantiate_colrv1 \
|
||||
expected/instantiate_cff2_update_metrics \
|
||||
expected/glyf_partial_instancing \
|
||||
fonts \
|
||||
profiles \
|
||||
$(NULL)
|
||||
|
|
|
@ -63,7 +63,6 @@ TESTS = \
|
|||
tests/collect_name_ids.tests \
|
||||
tests/instantiate_colrv1.tests \
|
||||
tests/instantiate_cff2_update_metrics.tests \
|
||||
tests/glyf_partial_instancing.tests \
|
||||
$(NULL)
|
||||
|
||||
# TODO: re-enable once colrv1 subsetting is stabilized.
|
||||
|
|
|
@ -65,7 +65,7 @@ tests = [
|
|||
'collect_name_ids',
|
||||
'instantiate_colrv1',
|
||||
'instantiate_cff2_update_metrics',
|
||||
'glyf_partial_instancing',
|
||||
#'glyf_partial_instancing',
|
||||
]
|
||||
|
||||
repack_tests = [
|
||||
|
|
|
@ -707,6 +707,7 @@ parse_instance (const char *name,
|
|||
return false;
|
||||
}
|
||||
|
||||
#ifdef HB_EXPERIMENTAL_API
|
||||
char *pp = s;
|
||||
pp = strpbrk (pp, ":");
|
||||
if (pp) // partial instancing
|
||||
|
@ -756,6 +757,7 @@ parse_instance (const char *name,
|
|||
}
|
||||
else
|
||||
{
|
||||
#endif
|
||||
if (strcmp (s, "drop") == 0)
|
||||
{
|
||||
if (!hb_subset_input_pin_axis_to_default (subset_main->input, subset_main->face, axis_tag))
|
||||
|
@ -784,7 +786,9 @@ parse_instance (const char *name,
|
|||
return false;
|
||||
}
|
||||
}
|
||||
#ifdef HB_EXPERIMENTAL_API
|
||||
}
|
||||
#endif
|
||||
s = strtok(nullptr, "=");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue