]> git.ipfire.org Git - thirdparty/kmod.git/commitdiff
meson: normalize s/check/test/
authorLucas De Marchi <lucas.de.marchi@gmail.com>
Fri, 6 Sep 2024 19:46:28 +0000 (14:46 -0500)
committerLucas De Marchi <lucas.de.marchi@gmail.com>
Fri, 6 Sep 2024 19:46:28 +0000 (14:46 -0500)
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>
Makefile.am
libkmod/docs/meson.build
meson.build
scripts/test-gtkdoc.sh [moved from scripts/check-gtkdoc.sh with 100% similarity]

index 6c4b00ebb354480bd8c557e587857a779b4d1505..37026009f461acb34a56bdc9f99a887398e99d07 100644 (file)
@@ -23,7 +23,7 @@ EXTRA_DIST += \
        meson_options.txt \
        testsuite/meson.build \
        scripts/build-scdoc.sh \
-       scripts/check-gtkdoc.sh \
+       scripts/test-gtkdoc.sh \
        scripts/kmod-symlink.sh
 
 AM_CPPFLAGS = \
index a6d64ebf26edf16f353193ac9b8ac6d795b734fd..b4d41cc36ad7dd653e1a5facd28cf0265c19c28c 100644 (file)
@@ -23,7 +23,7 @@ built_docs = gnome.gtkdoc(
 
 test(
   'test-gtkdoc',
-  check_gtkdoc,
+  test_gtkdoc,
   args : meson.current_build_dir(),
   depends : built_docs,
 )
index db07e9c56e8f89b750b93f8979abf620453b5b98..b0f9e0323518694823ca61c29214f60f65dd8261 100644 (file)
@@ -423,7 +423,7 @@ if get_option('manpages')
 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