facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
84 lines
2.6 KiB
Meson
84 lines
2.6 KiB
Meson
tests = [
|
|
['test-bz89617.c', {'c_args': ['-DSRCDIR="@0@"'.format(meson.current_source_dir())]}],
|
|
['test-bz131804.c'],
|
|
['test-bz96676.c'],
|
|
['test-name-parse.c'],
|
|
['test-bz106618.c'],
|
|
['test-bz1744377.c'],
|
|
['test-issue180.c'],
|
|
['test-family-matching.c'],
|
|
]
|
|
|
|
if host_machine.system() != 'windows'
|
|
tests += [
|
|
# FIXME: ['test-migration.c'],
|
|
['test-bz106632.c', {'c_args': ['-DFONTFILE="@0@"'.format(join_paths(meson.current_source_dir(), '4x6.pcf'))]}],
|
|
['test-issue107.c'], # FIXME: fails on mingw
|
|
# FIXME: this needs NotoSans-hinted.zip font downloaded and unpacked into test build directory! see run-test.sh
|
|
['test-crbug1004254.c', {'dependencies': dependency('threads')}], # for pthread
|
|
]
|
|
|
|
if get_option('default_library') == 'static'
|
|
tests += [
|
|
['test-issue110.c'],
|
|
['test-d1f48f11.c'],
|
|
]
|
|
endif
|
|
endif
|
|
|
|
|
|
foreach test_data : tests
|
|
fname = test_data[0]
|
|
opts = test_data.length() > 1 ? test_data[1] : {}
|
|
extra_c_args = opts.get('c_args', [])
|
|
extra_deps = opts.get('dependencies', [])
|
|
|
|
test_name = fname.split('.')[0].underscorify()
|
|
exe = executable(test_name, fname,
|
|
c_args: c_args + extra_c_args,
|
|
include_directories: incbase,
|
|
link_with: [libfontconfig],
|
|
dependencies: extra_deps,
|
|
)
|
|
|
|
test(test_name, exe, timeout: 600)
|
|
endforeach
|
|
|
|
if get_option('fontations').enabled()
|
|
rust = import('rust')
|
|
rust.test('fc_fontations_tests', fc_fontations)
|
|
endif
|
|
|
|
fs = import('fs')
|
|
|
|
if host_machine.system() != 'windows'
|
|
if conf.get('FREETYPE_PCF_LONG_FAMILY_NAMES')
|
|
out_expected = fs.copyfile('out.expected-long-family-names',
|
|
'out.expected')
|
|
else
|
|
out_expected = fs.copyfile('out.expected-no-long-family-names',
|
|
'out.expected')
|
|
endif
|
|
|
|
test('run_test_sh', find_program('run-test.sh'), timeout: 600, env: ['srcdir=@0@'.format(meson.current_source_dir()), 'builddir=@0@'.format(meson.current_build_dir()), 'EXEEXT=@0@'.format(conf.get('EXEEXT')), 'VERBOSE=1'])
|
|
|
|
if pytest.found()
|
|
test('pytest', pytest, args: ['--tap'],
|
|
workdir: meson.current_source_dir(),
|
|
env: ['builddir=@0@'.format(meson.current_build_dir())],
|
|
protocol: 'tap')
|
|
endif
|
|
endif
|
|
|
|
if jsonc_dep.found()
|
|
test_conf = executable('test-conf', 'test-conf.c',
|
|
dependencies: [fontconfig_dep, jsonc_dep])
|
|
test('run_test_conf_sh', find_program('run-test-conf.sh'),
|
|
timeout: 120,
|
|
env: [
|
|
'srcdir=@0@'.format(meson.current_source_dir()),
|
|
'builddir=@0@'.format(meson.current_build_dir())
|
|
],
|
|
depends: test_conf)
|
|
endif
|