Add tests/t1000-rcxml-simple-parse.c

This commit is contained in:
Johan Malm 2020-06-08 21:10:45 +01:00
parent 91ce33dd0d
commit 40c0b169ef
5 changed files with 142 additions and 0 deletions

15
tests/meson.build Normal file
View file

@ -0,0 +1,15 @@
rcxml_lib = static_library(
'rcxml',
sources: ['../src/config/rcxml.c'],
dependencies: xml2,
include_directories: [labwc_inc],
link_with: library('libxml-2.0'),
)
t1000 = executable(
't1000-rcxml-simple-parse',
sources: ['t1000-rcxml-simple-parse.c', 'tap.c'],
include_directories: [labwc_inc],
link_with: rcxml_lib,
)
test('t1000', t1000)