Commit 21f25cd4 authored by Guillaume Nault's avatar Guillaume Nault Committed by David S. Miller

selftests: fib rule: Log test description

All callers of fib_rule6_test_match_n_redirect() and
fib_rule4_test_match_n_redirect() pass a third argument containing a
description of the test being run. Instead of ignoring this argument,
let's use it for logging instead of printing a truncated version of the
command.
Signed-off-by: default avatarGuillaume Nault <gnault@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2e252113
...@@ -104,13 +104,14 @@ fib_rule6_test_match_n_redirect() ...@@ -104,13 +104,14 @@ fib_rule6_test_match_n_redirect()
{ {
local match="$1" local match="$1"
local getmatch="$2" local getmatch="$2"
local description="$3"
$IP -6 rule add $match table $RTABLE $IP -6 rule add $match table $RTABLE
$IP -6 route get $GW_IP6 $getmatch | grep -q "table $RTABLE" $IP -6 route get $GW_IP6 $getmatch | grep -q "table $RTABLE"
log_test $? 0 "rule6 check: $1" log_test $? 0 "rule6 check: $description"
fib_rule6_del_by_pref "$match" fib_rule6_del_by_pref "$match"
log_test $? 0 "rule6 del by pref: $match" log_test $? 0 "rule6 del by pref: $description"
} }
fib_rule6_test() fib_rule6_test()
...@@ -176,13 +177,14 @@ fib_rule4_test_match_n_redirect() ...@@ -176,13 +177,14 @@ fib_rule4_test_match_n_redirect()
{ {
local match="$1" local match="$1"
local getmatch="$2" local getmatch="$2"
local description="$3"
$IP rule add $match table $RTABLE $IP rule add $match table $RTABLE
$IP route get $GW_IP4 $getmatch | grep -q "table $RTABLE" $IP route get $GW_IP4 $getmatch | grep -q "table $RTABLE"
log_test $? 0 "rule4 check: $1" log_test $? 0 "rule4 check: $description"
fib_rule4_del_by_pref "$match" fib_rule4_del_by_pref "$match"
log_test $? 0 "rule4 del by pref: $match" log_test $? 0 "rule4 del by pref: $description"
} }
fib_rule4_test() fib_rule4_test()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment