fix bots.

-Also disable partial instancing tests for now, cause the command option
is wrapped by experimental_api
This commit is contained in:
Qunxin Liu 2023-08-08 08:33:11 -07:00
parent 77b158c72d
commit 0aa5dafefd
4 changed files with 5 additions and 3 deletions

View file

@ -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)

View file

@ -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.

View file

@ -65,7 +65,7 @@ tests = [
'collect_name_ids',
'instantiate_colrv1',
'instantiate_cff2_update_metrics',
'glyf_partial_instancing',
#'glyf_partial_instancing',
]
repack_tests = [

View file

@ -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, "=");
}