mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-11 00:08:50 +00:00
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>
This commit is contained in:
parent
171a48717b
commit
a511858c75
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user