From: Leah Leshchinsky <lleshchi@xxxxxxxxxx> The cyclictest help output lists -F as the short version of the --fifo option, yet calling cyclictest -F produces an error" cyclictest: invalid option --'F'". This patch adds -F as a valid argument. Signed-off-by: Leah Leshchinsky <lleshchi@xxxxxxxxxx> --- src/cyclictest/cyclictest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cyclictest/cyclictest.c b/src/cyclictest/cyclictest.c index a08c91d..f8f7dbc 100644 --- a/src/cyclictest/cyclictest.c +++ b/src/cyclictest/cyclictest.c @@ -1011,7 +1011,7 @@ static void process_options(int argc, char *argv[], int max_cpus) {"posix_timers", no_argument, NULL, OPT_POSIX_TIMERS }, {NULL, 0, NULL, 0 }, }; - int c = getopt_long(argc, argv, "a::A::b:c:d:D:h:H:i:l:MNo:p:mqrRsSt::uvD:x", + int c = getopt_long(argc, argv, "a::A::b:c:d:D:F:h:H:i:l:MNo:p:mqrRsSt::uvD:x", long_options, &option_index); if (c == -1) break; -- 2.27.0