[test/shape] Internal rename

Residual from e0d7060f80
This commit is contained in:
Behdad Esfahbod 2022-02-15 16:57:23 -06:00
parent d12c51e6e6
commit 1bf588e28b
1 changed files with 7 additions and 7 deletions

View File

@ -3,7 +3,7 @@ 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')
shape_run_tests_py = find_program('run-tests.py')
env = environment()
env.set('HAVE_FREETYPE', '@0@'.format(conf.get('HAVE_FREETYPE', 0)))
@ -22,41 +22,41 @@ endif
foreach file_name : in_house_tests
test_name = file_name.split('.')[0]
test(test_name, shaping_run_tests_py,
test(test_name, shape_run_tests_py,
args: [
hb_shape,
meson.current_source_dir() / 'data' / 'in-house' / 'tests' / file_name,
],
env: env,
workdir: meson.current_build_dir() / '..' / '..',
suite: ['shaping', 'in-house'],
suite: ['shape', 'in-house'],
)
endforeach
foreach file_name : aots_tests
test_name = file_name.split('.')[0]
test(test_name, shaping_run_tests_py,
test(test_name, shape_run_tests_py,
args: [
hb_shape,
meson.current_source_dir() / 'data' / 'aots' / 'tests' / file_name,
],
env: env,
workdir: meson.current_build_dir() / '..' / '..',
suite: ['shaping', 'aots'],
suite: ['shape', 'aots'],
)
endforeach
foreach file_name : text_rendering_tests
test_name = file_name.split('.')[0]
test(test_name, shaping_run_tests_py,
test(test_name, shape_run_tests_py,
args: [
hb_shape,
meson.current_source_dir() / 'data' / 'text-rendering-tests' / 'tests' / file_name,
],
env: env,
workdir: meson.current_build_dir() / '..' / '..',
suite: ['shaping', 'text-rendering-tests'],
suite: ['shape', 'text-rendering-tests'],
)
endforeach