The testsuite is executed by calling the 'test' target in meson, as
opposed to 'check' with autotools. Let's normalize it aligned to the new
build system.
Signed-off-by: Lucas De Marchi <lucas.de.marchi@gmail.com>
meson_options.txt \
testsuite/meson.build \
scripts/build-scdoc.sh \
- scripts/check-gtkdoc.sh \
+ scripts/test-gtkdoc.sh \
scripts/kmod-symlink.sh
AM_CPPFLAGS = \
test(
'test-gtkdoc',
- check_gtkdoc,
+ test_gtkdoc,
args : meson.current_build_dir(),
depends : built_docs,
)
endif
if get_option('docs')
- check_gtkdoc = find_program('scripts/check-gtkdoc.sh')
+ test_gtkdoc = find_program('scripts/test-gtkdoc.sh')
subdir('libkmod/docs')
endif