From: Emil Velikov Date: Fri, 30 May 2025 19:10:09 +0000 (+0100) Subject: testsuite/modprobe: remove --quiet from --show-{depends,exports} X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7816017f6ee8ac9b96067c5bb48167f41d5e339a;p=thirdparty%2Fkmod.git testsuite/modprobe: remove --quiet from --show-{depends,exports} Even though we don't give the user any feedback, the --quiet option is only applicable with --remove. Remove it from any modprobe --show* invocations. Signed-off-by: Emil Velikov Link: https://github.com/kmod-project/kmod/pull/353 Signed-off-by: Lucas De Marchi --- diff --git a/testsuite/test-modprobe.c b/testsuite/test-modprobe.c index ab675ed3..b341f890 100644 --- a/testsuite/test-modprobe.c +++ b/testsuite/test-modprobe.c @@ -57,7 +57,7 @@ DEFINE_TEST_WITH_FUNC(modprobe_show_depends_no_load, modprobe_show_depends2, static noreturn int modprobe_show_alias_to_none(void) { - EXEC_MODPROBE("--show-depends", "--ignore-install", "--quiet", "mod-simple"); + EXEC_MODPROBE("--show-depends", "--ignore-install", "mod-simple"); exit(EXIT_FAILURE); } DEFINE_TEST(modprobe_show_alias_to_none, @@ -74,7 +74,7 @@ DEFINE_TEST(modprobe_show_alias_to_none, static noreturn int modprobe_show_exports(void) { - EXEC_MODPROBE("--show-exports", "--quiet", "/mod-loop-a.ko"); + EXEC_MODPROBE("--show-exports", "/mod-loop-a.ko"); exit(EXIT_FAILURE); } DEFINE_TEST(modprobe_show_exports,