summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/net/udpgso_bench_tx.c
diff options
context:
space:
mode:
authorAndrei Gherzan <andrei.gherzan@canonical.com>2023-02-01 00:16:12 +0000
committerPaolo Abeni <pabeni@redhat.com>2023-02-02 13:29:51 +0100
commitdb9b47ee9f5f375ab0c5daeb20321c75b4fa657d (patch)
treec343f6d62c621debb5fb527ebbcb11a30450ac1c /tools/testing/selftests/net/udpgso_bench_tx.c
parentc03c80e3a03ffb4f790901d60797e9810539d946 (diff)
selftests: net: udpgso_bench_rx/tx: Stop when wrong CLI args are provided
Leaving unrecognized arguments buried in the output, can easily hide a CLI/script typo. Avoid this by exiting when wrong arguments are provided to the udpgso_bench test programs. Fixes: 3a687bef148d ("selftests: udp gso benchmark") Signed-off-by: Andrei Gherzan <andrei.gherzan@canonical.com> Cc: Willem de Bruijn <willemb@google.com> Reviewed-by: Willem de Bruijn <willemb@google.com> Link: https://lore.kernel.org/r/20230201001612.515730-2-andrei.gherzan@canonical.com Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Diffstat (limited to 'tools/testing/selftests/net/udpgso_bench_tx.c')
-rw-r--r--tools/testing/selftests/net/udpgso_bench_tx.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/testing/selftests/net/udpgso_bench_tx.c b/tools/testing/selftests/net/udpgso_bench_tx.c
index f1fdaa270291..b47b5c32039f 100644
--- a/tools/testing/selftests/net/udpgso_bench_tx.c
+++ b/tools/testing/selftests/net/udpgso_bench_tx.c
@@ -490,6 +490,8 @@ static void parse_opts(int argc, char **argv)
case 'z':
cfg_zerocopy = true;
break;
+ default:
+ exit(1);
}
}