Message ID | 20210913192951.650464-1-lleshchi@redhat.com |
---|---|
State | New |
Headers | show |
Series | rt-tests: Add missing option F to optstring | expand |
On Mon, 13 Sep 2021, lleshchi@redhat.com wrote: > From: Leah Leshchinsky <lleshchi@redhat.com> > > 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@redhat.com> > --- > 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 > > Thanks Signed-off-by: John Kacur <jkacur@redhat.com>
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;