2018-12-06 15:16:13 +01:00
|
|
|
psl_dafsa = custom_target('psl.dafsa',
|
|
|
|
input : psl_file,
|
|
|
|
output : 'psl.dafsa',
|
2018-12-11 02:26:13 +01:00
|
|
|
command : [psl_make_dafsa, '--output-format=binary', '@INPUT@', '@OUTPUT@'])
|
2018-12-06 15:16:13 +01:00
|
|
|
|
|
|
|
psl_ascii_dafsa = custom_target('psl_ascii.dafsa',
|
|
|
|
input : psl_file,
|
|
|
|
output : 'psl_ascii.dafsa',
|
2018-12-11 02:26:13 +01:00
|
|
|
command : [psl_make_dafsa, '--output-format=binary', '--encoding=ascii', '@INPUT@', '@OUTPUT@'])
|
2018-12-06 15:16:13 +01:00
|
|
|
|
|
|
|
tests_cargs = [
|
2018-12-09 14:33:56 +01:00
|
|
|
'-DHAVE_CONFIG_H',
|
2018-12-08 18:49:20 +01:00
|
|
|
'-DSRCDIR="@0@"'.format(meson.current_source_dir()),
|
2018-12-06 15:16:13 +01:00
|
|
|
'-DPSL_FILE="@0@"'.format(psl_file),
|
|
|
|
'-DPSL_TESTFILE="@0@"'.format(psl_test_file),
|
|
|
|
'-DPSL_DAFSA="@0@"'.format(psl_dafsa.full_path()),
|
|
|
|
'-DPSL_ASCII_DAFSA="@0@"'.format(psl_ascii_dafsa.full_path()),
|
|
|
|
]
|
|
|
|
|
|
|
|
tests = [
|
|
|
|
'test-is-public',
|
|
|
|
'test-is-public-all',
|
|
|
|
'test-is-cookie-domain-acceptable',
|
|
|
|
]
|
|
|
|
|
|
|
|
if enable_builtin != 'no'
|
|
|
|
tests += ['test-is-public-builtin', 'test-registrable-domain']
|
|
|
|
endif
|
|
|
|
|
|
|
|
foreach test_name : tests
|
|
|
|
source = test_name + '.c'
|
|
|
|
exe = executable(test_name, source,
|
|
|
|
c_args : tests_cargs,
|
|
|
|
link_with : libpsl,
|
|
|
|
include_directories : [configinc, includedir])
|
|
|
|
test(test_name, exe, depends : [psl_dafsa, psl_ascii_dafsa])
|
|
|
|
endforeach
|