aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/net/fib_tests.sh
diff options
context:
space:
mode:
authorDavid Ahern <dsahern@gmail.com>2018-03-13 08:29:40 -0700
committerDavid S. Miller <davem@davemloft.net>2018-03-16 11:28:39 -0400
commita511858c7536fab15a59a0a2aee14c5a909da23a (patch)
treec3ee91e8ad0c5e9829f8f3e9305c7ae31c2b5570 /tools/testing/selftests/net/fib_tests.sh
parentselftests: fib_tests: Use an alias for ip command (diff)
downloadlinux-dev-a511858c7536fab15a59a0a2aee14c5a909da23a.tar.xz
linux-dev-a511858c7536fab15a59a0a2aee14c5a909da23a.zip
selftests: fib_tests: Allow user to run a specific test
Allow a user to run just a specific fib test by setting the TEST environment variable. Signed-off-by: David Ahern <dsahern@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools/testing/selftests/net/fib_tests.sh')
-rwxr-xr-xtools/testing/selftests/net/fib_tests.sh10
1 files changed, 7 insertions, 3 deletions
diff --git a/tools/testing/selftests/net/fib_tests.sh b/tools/testing/selftests/net/fib_tests.sh
index 953254439e39..cfdeb35bfed5 100755
--- a/tools/testing/selftests/net/fib_tests.sh
+++ b/tools/testing/selftests/net/fib_tests.sh
@@ -392,9 +392,13 @@ fib_carrier_test()
fib_test()
{
- fib_unreg_test
- fib_down_test
- fib_carrier_test
+ if [ -n "$TEST" ]; then
+ eval $TEST
+ else
+ fib_unreg_test
+ fib_down_test
+ fib_carrier_test
+ fi
}
if [ "$(id -u)" -ne 0 ];then