Disable empty_region_vardata test when running on 32bit machines.

This commit is contained in:
Garret Rieger 2024-05-03 18:24:33 +00:00
parent e81c8c1312
commit f145ab2f1e

View file

@ -71,7 +71,6 @@ tests = [
'glyf_partial_instancing',
'mvar_partial_instance',
'update_def_wght',
'empty_region_vardata',
'feature_variations_partial_instance',
'gdef_partial_instance',
'value_format_partial_instance',
@ -79,6 +78,14 @@ tests = [
'sync_vmetrics',
]
if host_machine.cpu_family() != 'x86'
# These tests exhibit some inconsequential rounding differences on 32bit machines in IUP
# optimization that causes the tests to fail, so only include them on non-32bit.
tests += [
'empty_region_vardata',
]
endif
if get_option('experimental_api')
tests += [
'iftb_requirements',