diff options
author | Li Zhijian <lizhijian@fujitsu.com> | 2022-01-14 04:02:46 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-01-14 12:21:55 +0100 |
commit | 2255634100bffe0abc1a300f20aee26980891ba4 (patch) | |
tree | 5c4135efc2065c9d85634d42d5605c70a455e977 /tools | |
parent | net: usb: Correct reset handling of smsc95xx (diff) | |
download | linux-2255634100bffe0abc1a300f20aee26980891ba4.tar.xz linux-2255634100bffe0abc1a300f20aee26980891ba4.zip |
kselftests/net: list all available tests in usage()
So that users can run/query them easily.
$ ./fcnal-test.sh -h
usage: fcnal-test.sh OPTS
-4 IPv4 tests only
-6 IPv6 tests only
-t <test> Test name/set to run
-p Pause on fail
-P Pause after each test
-v Be verbose
Tests:
ipv4_ping ipv4_tcp ipv4_udp ipv4_bind ipv4_runtime ipv4_netfilter ipv6_ping ipv6_tcp ipv6_udp ipv6_bind ipv6_runtime ipv6_netfilter use_cases
Suggested-by: David Ahern <dsahern@gmail.com>
Signed-off-by: Li Zhijian <lizhijian@fujitsu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/testing/selftests/net/fcnal-test.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/testing/selftests/net/fcnal-test.sh b/tools/testing/selftests/net/fcnal-test.sh index 412d85205546..3f4c8cfe7aca 100755 --- a/tools/testing/selftests/net/fcnal-test.sh +++ b/tools/testing/selftests/net/fcnal-test.sh @@ -4059,6 +4059,9 @@ usage: ${0##*/} OPTS -p Pause on fail -P Pause after each test -v Be verbose + +Tests: + $TESTS_IPV4 $TESTS_IPV6 $TESTS_OTHER EOF } |