From: Masatake YAMATO Date: Sat, 26 Feb 2022 17:42:52 +0000 (+0900) Subject: tests: (lsfd) improve the help messages of test_mkfds helper command X-Git-Tag: v2.38-rc2~12^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f3a2a77c500f14e1dd1ba75859423f7fe64a61c;p=thirdparty%2Futil-linux.git tests: (lsfd) improve the help messages of test_mkfds helper command The change notifies users that -I, --parameters option takes a factory name. Signed-off-by: Masatake YAMATO --- diff --git a/tests/helpers/test_mkfds.c b/tests/helpers/test_mkfds.c index bb4fe882a3..12b814f378 100644 --- a/tests/helpers/test_mkfds.c +++ b/tests/helpers/test_mkfds.c @@ -44,11 +44,11 @@ static void __attribute__((__noreturn__)) usage(FILE *out, int status) fprintf(out, _(" %s [options] FACTORY FD... [PARAM=VAL...]\n"), program_invocation_short_name); fputs(USAGE_OPTIONS, out); - fputs(_(" -l, --list list available file descriptor factories and exit\n"), out); - fputs(_(" -I, --parameters list parameters the factory takes\n"), out); - fputs(_(" -r, --comm rename self\n"), out); - fputs(_(" -q, --quiet don't print pid(s)\n"), out); - fputs(_(" -c, --dont-pause don't pause after making fd(s)\n"), out); + fputs(_(" -l, --list list available file descriptor factories and exit\n"), out); + fputs(_(" -I, --parameters list parameters the factory takes\n"), out); + fputs(_(" -r, --comm rename self\n"), out); + fputs(_(" -q, --quiet don't print pid(s)\n"), out); + fputs(_(" -c, --dont-pause don't pause after making fd(s)\n"), out); fputs(USAGE_SEPARATOR, out); fputs(_("Examples:\n"), out);