HarfBuzz text shaping engine
http://harfbuzz.github.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.4 KiB
51 lines
1.4 KiB
|
|
subdir('data/in-house') # in_house_tests |
|
subdir('data/aots') # aots_tests |
|
subdir('data/text-rendering-tests') # text_rendering_tests |
|
|
|
shaping_run_tests_py = find_program('run-tests.py') |
|
|
|
env = environment() |
|
env.set('HAVE_FREETYPE', '@0@'.format(conf.get('HAVE_FREETYPE', 0))) |
|
|
|
foreach file_name : in_house_tests |
|
test_name = file_name.split('.')[0].underscorify() |
|
|
|
test(test_name, shaping_run_tests_py, |
|
args: [ |
|
hb_shape, |
|
join_paths(meson.current_source_dir(), 'data', 'in-house', 'tests', file_name), |
|
], |
|
env: env, |
|
workdir: join_paths(meson.current_build_dir(), '..', '..'), |
|
suite: ['shaping', 'in-house'], |
|
) |
|
endforeach |
|
|
|
foreach file_name : aots_tests |
|
test_name = file_name.split('.')[0].underscorify() |
|
|
|
test(test_name, shaping_run_tests_py, |
|
args: [ |
|
hb_shape, |
|
join_paths(meson.current_source_dir(), 'data', 'aots', 'tests', file_name), |
|
], |
|
env: env, |
|
workdir: join_paths(meson.current_build_dir(), '..', '..'), |
|
suite: ['shaping', 'aots'], |
|
) |
|
endforeach |
|
|
|
foreach file_name : text_rendering_tests |
|
test_name = file_name.split('.')[0].underscorify() |
|
|
|
test(test_name, shaping_run_tests_py, |
|
args: [ |
|
hb_shape, |
|
join_paths(meson.current_source_dir(), 'data', 'text-rendering-tests', 'tests', file_name), |
|
], |
|
env: env, |
|
workdir: join_paths(meson.current_build_dir(), '..', '..'), |
|
suite: ['shaping', 'text-rendering-tests'], |
|
) |
|
endforeach
|
|
|