From: Lucas De Marchi Date: Fri, 6 Sep 2024 19:46:28 +0000 (-0500) Subject: meson: normalize s/check/test/ X-Git-Tag: v34~416 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0bd6f4f4cdf58027386e2cf887c6781968e6d397;p=thirdparty%2Fkmod.git meson: normalize s/check/test/ 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 --- diff --git a/Makefile.am b/Makefile.am index 6c4b00eb..37026009 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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 = \ diff --git a/libkmod/docs/meson.build b/libkmod/docs/meson.build index a6d64ebf..b4d41cc3 100644 --- a/libkmod/docs/meson.build +++ b/libkmod/docs/meson.build @@ -23,7 +23,7 @@ built_docs = gnome.gtkdoc( test( 'test-gtkdoc', - check_gtkdoc, + test_gtkdoc, args : meson.current_build_dir(), depends : built_docs, ) diff --git a/meson.build b/meson.build index db07e9c5..b0f9e032 100644 --- a/meson.build +++ b/meson.build @@ -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 diff --git a/scripts/check-gtkdoc.sh b/scripts/test-gtkdoc.sh similarity index 100% rename from scripts/check-gtkdoc.sh rename to scripts/test-gtkdoc.sh