mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-10 15:30:12 +00:00
a12e13bdc3
Signed-off-by: Andrea Bolognani <abologna@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
25 lines
398 B
Meson
25 lines
398 B
Meson
rpcgen_tests = files([
|
|
'test_generator.py',
|
|
'test_lexer.py',
|
|
'test_parser.py',
|
|
])
|
|
|
|
|
|
test_demo = executable(
|
|
'test_demo',
|
|
[ 'test_demo.c' ],
|
|
c_args: [
|
|
'-Dabs_srcdir="@0@"'.format(meson.current_source_dir()),
|
|
] + cc_flags_relaxed_frame_limit,
|
|
dependencies: [
|
|
xdr_dep, glib_dep
|
|
],
|
|
)
|
|
|
|
test(
|
|
'test_demo',
|
|
test_demo,
|
|
workdir: meson.current_source_dir(),
|
|
suite: 'bin',
|
|
)
|