[instancer] enable partial instancing tests when experimental api is on

This commit is contained in:
Qunxin Liu 2023-08-22 12:54:50 -07:00
parent bea26446d2
commit dd8d35766b
2 changed files with 5 additions and 2 deletions

View file

@ -937,7 +937,7 @@ struct tuple_delta_t
if (orig_points.arrayZ[i].is_end_point)
end_points.push (i);
}
/* all points are referened, nothing to do */
/* all points are referenced, nothing to do */
if (ref_count == point_count)
return true;
if (unlikely (end_points.in_error ())) return false;

View file

@ -65,9 +65,12 @@ tests = [
'collect_name_ids',
'instantiate_colrv1',
'instantiate_cff2_update_metrics',
#'glyf_partial_instancing',
]
if get_option('experimental_api')
tests += 'glyf_partial_instancing'
endif
repack_tests = [
'basic',
'prioritization',