Skip to content

Commit

Permalink
tests/ctests: Build ctests separately
Browse files Browse the repository at this point in the history
At present the ctests are not properly linked with the built code,
this causes issues when there are interdependencies between the
modules.

The meson build system does not appear to have support for
internal build order or dependncies, so the only way I have found
to make this work is to break out the build of the ctests as a
separate project.

This is required to avoid undefined symbols in the test code for
the next patch in this series.

Signed-off-by: Frode Nordahl <[email protected]>
  • Loading branch information
fnordahl committed Dec 2, 2023
1 parent c97c476 commit ac16c03
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 5 deletions.
7 changes: 6 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,12 @@ test_env = [
]

if get_option('unit_testing')
subdir('tests/ctests')
test('ctests',
find_program('tests/ctests/run.sh'),
workdir: join_paths(meson.current_source_dir(), 'tests/ctests'),
args: [join_paths(meson.current_build_dir(), '_ctestsbuild'),
'-Dparent_current_source_dir=' + meson.current_source_dir(),
'-Dparent_current_build_dir=' + meson.current_build_dir()])
endif

#FIXME: exclude doc/env/
Expand Down
9 changes: 9 additions & 0 deletions tests/ctests/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/sh

BUILDDIR="$1"; shift
meson setup ${BUILDDIR} $*
meson compile -C ${BUILDDIR} --verbose

if [ "$(basename $0)" = "run.sh" ]; then
meson test -C ${BUILDDIR}
fi
23 changes: 20 additions & 3 deletions tests/ctests/meson.build
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
project('ctests', 'c')

add_project_arguments(
'-DSBINDIR="' + join_paths(get_option('prefix'), get_option('sbindir')) + '"',
'-D_GNU_SOURCE',
language: 'c')

tests = {
'test_netplan_parser': false,
'test_netplan_state': false,
Expand All @@ -10,15 +17,25 @@ tests = {
'test_netplan_openvswitch': false,
}

glib = dependency('glib-2.0')
gio = dependency('gio-2.0')
yaml = dependency('yaml-0.1')
uuid = dependency('uuid')
cmocka = dependency('cmocka', required: true)
netplan = meson.get_compiler('c').find_library(
'netplan',
dirs: [join_paths(get_option('parent_current_build_dir'), 'src')])

foreach name, should_fail: tests
exe = executable(name,
'@[email protected]'.format(name),
include_directories: [inc, inc_internal],
dependencies: [cmocka, glib, gio, yaml, uuid],
include_directories: [
join_paths(get_option('parent_current_source_dir'), 'include'),
join_paths(get_option('parent_current_source_dir'), 'src'),
],
dependencies: [cmocka, glib, gio, yaml, uuid, netplan],
c_args: [
'-DFIXTURESDIR="' + meson.project_source_root() + '/tests/ctests/fixtures"',
'-DFIXTURESDIR="' + meson.project_source_root() + '/fixtures"',
'-Wno-deprecated-declarations',
'-D_GNU_SOURCE',
],
Expand Down
2 changes: 2 additions & 0 deletions tests/ctests/meson_options.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
option('parent_current_source_dir', type: 'string', value: '')
option('parent_current_build_dir', type: 'string', value: '')
1 change: 1 addition & 0 deletions tests/ctests/run.sh
9 changes: 8 additions & 1 deletion tools/run_asan.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ CC=gcc
meson setup ${BUILDDIR} -Db_sanitize=address,undefined
meson compile -C ${BUILDDIR} --verbose

tests/ctests/build.sh \
${BUILDDIR}/_ctestsbuild \
tests/ctests \
-Dparent_current_source_dir=$(realpath .) \
-Dparent_current_build_dir=$(realpath ${BUILDDIR}) \
-Db_sanitize=address,undefined

meson setup ${CLEANBUILDDIR}
meson compile -C ${CLEANBUILDDIR} --verbose

Expand All @@ -18,7 +25,7 @@ ${CC} tools/keyfile_to_yaml.c -o tools/keyfile_to_yaml \
-Iinclude -L${BUILDDIR}/src \
-fsanitize=address,undefined -g

TESTS=$(find ${BUILDDIR}/tests/ctests/ -executable -type f)
TESTS=$(find ${BUILDDIR}/_ctestsbuild/ -executable -type f)
for test in ${TESTS}
do
./${test}
Expand Down

0 comments on commit ac16c03

Please sign in to comment.