mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
6e83bbf23c
It does not work, but this as a meson issue.
51 lines
2.6 KiB
Meson
51 lines
2.6 KiB
Meson
exe1 = executable('html-mangle', 'html-mangle.c',
|
|
meson.source_root()+'/src/dom/configuration.c',
|
|
meson.source_root()+'/src/dom/node.c',
|
|
meson.source_root()+'/src/dom/select.c',
|
|
meson.source_root()+'/src/dom/stack.c',
|
|
meson.source_root()+'/src/dom/scanner.c',
|
|
meson.source_root()+'/src/dom/css/scanner.c',
|
|
testdeps,
|
|
c_args:['-DHAVE_CONFIG_H'], cpp_args:['-DHAVE_CONFIG_H'], include_directories:['.', '../..', '../../..'],
|
|
build_by_default:false)
|
|
|
|
exe2 = executable('sgml-parser', 'sgml-parser.c',
|
|
meson.source_root()+'/src/dom/configuration.c',
|
|
meson.source_root()+'/src/dom/node.c',
|
|
meson.source_root()+'/src/dom/select.c',
|
|
meson.source_root()+'/src/dom/stack.c',
|
|
meson.source_root()+'/src/dom/scanner.c',
|
|
meson.source_root()+'/src/dom/css/scanner.c',
|
|
meson.source_root()+'/src/dom/sgml/dump.c',
|
|
meson.source_root()+'/src/dom/sgml/parser.c',
|
|
meson.source_root()+'/src/dom/sgml/scanner.c',
|
|
meson.source_root()+'/src/dom/sgml/sgml.c',
|
|
|
|
meson.source_root()+'/src/dom/sgml/docbook/docbook.c',
|
|
meson.source_root()+'/src/dom/sgml/html/html.c',
|
|
meson.source_root()+'/src/dom/sgml/rss/rss.c',
|
|
meson.source_root()+'/src/dom/sgml/xbel/xbel.c',
|
|
testdeps,
|
|
c_args:['-DHAVE_CONFIG_H'], cpp_args:['-DHAVE_CONFIG_H'], include_directories:['.', '../..', '../../..'],
|
|
build_by_default:false)
|
|
|
|
test_lib = environment({'TEST_LIB': meson.source_root()+'/test/libtest.sh'})
|
|
|
|
t1 = find_program('test-dom-configuration-basic')
|
|
t2 = find_program('test-sgml-dump-basic')
|
|
t3 = find_program('test-sgml-parser-basic')
|
|
t4 = find_program('test-sgml-parser-error')
|
|
t5 = find_program('test-sgml-parser-incomplete')
|
|
t6 = find_program('test-sgml-parser-incremental')
|
|
t7 = find_program('test-sgml-parser-lines')
|
|
t8 = find_program('test-sgml-parser-random')
|
|
|
|
test('dom-configuration-basic', t1, depends:[exe2], env:test_lib, workdir:meson.current_build_dir(), is_parallel:false)
|
|
test('sgml-dump-basic', t2, depends:[exe2], env:test_lib, workdir:meson.current_build_dir(), is_parallel:false)
|
|
test('sgml-parser-basic', t3, depends:[exe2], env:test_lib, workdir:meson.current_build_dir(), is_parallel:false)
|
|
test('sgml-parser-error', t4, depends:[exe2], env:test_lib, workdir:meson.current_build_dir(), is_parallel:false)
|
|
test('sgml-parser-incomplete', t5, depends:[exe2], env:test_lib, workdir:meson.current_build_dir(), is_parallel:false)
|
|
test('sgml-parser-incremental', t6, depends:[exe2], env:test_lib, workdir:meson.current_build_dir(), is_parallel:false, should_fail:true)
|
|
test('sgml-parser-lines', t7, depends:[exe2], env:test_lib, workdir:meson.current_build_dir(), is_parallel:false)
|
|
test('sgml-parser-random', t8, depends:[exe1], env:test_lib, workdir:meson.current_build_dir(), is_parallel:false, should_fail:true)
|