Whamcloud - gitweb
LU-12410 lnet: Add additional output to sanity-lnet.sh 42/36242/5
authorChris Horn <hornc@cray.com>
Thu, 19 Sep 2019 19:01:05 +0000 (14:01 -0500)
committerOleg Drokin <green@whamcloud.com>
Tue, 12 Nov 2019 04:07:18 +0000 (04:07 +0000)
Add wrappers around ip netns exec and lnetctl commands to generate
some additional test output. This makes it easier to see what each
test case is doing from the test script output, and aids in debugging
any problems.

Test-parameters: trivial
Test-parameters: testlist=sanity-lnet
Signed-off-by: Chris Horn <hornc@cray.com>
Change-Id: I95b18cb3a090527548a8f9e65845eb4a18dea6d6
Reviewed-on: https://review.whamcloud.com/36242
Tested-by: jenkins <devops@whamcloud.com>
Tested-by: Maloo <maloo@whamcloud.com>
Reviewed-by: Shaun Tancheff <stancheff@cray.com>
Reviewed-by: Petros Koutoupis <pkoutoupis@cray.com>
Reviewed-by: Oleg Drokin <green@whamcloud.com>
lustre/tests/sanity-lnet.sh

index 3ed3c07..052c39d 100755 (executable)
@@ -56,10 +56,18 @@ cleanup_lnet() {
        unload_modules
 }
 
+do_lnetctl() {
+       echo "$LNETCTL $@"
+       $LNETCTL "$@"
+}
+
 TESTNS='test_ns'
-RUN_NS="ip netns exec $TESTNS"
 FAKE_IF="test1pg"
 FAKE_IP="10.1.2.3"
+do_ns() {
+       echo "ip netns exec $TESTNS $@"
+       ip netns exec $TESTNS "$@"
+}
 
 setup_netns() {
        cleanup_netns
@@ -67,8 +75,8 @@ setup_netns() {
        ip netns add $TESTNS
        ip link add 'test1pl' type veth peer name $FAKE_IF netns $TESTNS
        ip link set 'test1pl' up
-       $RUN_NS ip addr add "${FAKE_IP}/31" dev $FAKE_IF
-       $RUN_NS ip link set $FAKE_IF up
+       do_ns ip addr add "${FAKE_IP}/31" dev $FAKE_IF
+       do_ns ip link set $FAKE_IF up
 }
 
 cleanup_netns() {
@@ -84,7 +92,7 @@ setup_netns
 load_lnet
 
 test_1() {
-       $LNETCTL lnet configure
+       do_lnetctl lnet configure
 }
 run_test 1 "configure lnet with lnetctl"
 
@@ -94,7 +102,7 @@ run_test 1 "configure lnet with lnetctl"
 test_2() {
        cleanup_lnet || exit 1
        load_lnet "networks=\"\""
-       $RUN_NS $LNETCTL lnet configure --all || exit 1
+       do_ns $LNETCTL lnet configure --all || exit 1
        $LNETCTL net show --net tcp | grep -q "nid: ${FAKE_IP}@tcp$"
 }
 run_test 2 "load lnet w/o module option, configure in a non-default namespace"
@@ -102,7 +110,7 @@ run_test 2 "load lnet w/o module option, configure in a non-default namespace"
 test_3() {
        cleanup_lnet || exit 1
        load_lnet "networks=tcp($FAKE_IF)"
-       $RUN_NS $LNETCTL lnet configure --all || exit 1
+       do_ns $LNETCTL lnet configure --all || exit 1
        $LNETCTL net show --net tcp | grep -q "nid: ${FAKE_IP}@tcp$"
 }
 run_test 3 "load lnet using networks module options in a non-default namespace"
@@ -110,7 +118,7 @@ run_test 3 "load lnet using networks module options in a non-default namespace"
 test_4() {
        cleanup_lnet || exit 1
        load_lnet "networks=\"\" ip2nets=\"tcp0($FAKE_IF) ${FAKE_IP}\""
-       $RUN_NS $LNETCTL lnet configure --all || exit 1
+       do_ns $LNETCTL lnet configure --all || exit 1
        $LNETCTL net show | grep -q "nid: ${FAKE_IP}@tcp$"
 }
 run_test 4 "load lnet using ip2nets in a non-default namespace"
@@ -121,8 +129,8 @@ run_test 4 "load lnet using ip2nets in a non-default namespace"
 test_5() {
        cleanup_lnet || exit 1
        load_lnet
-       $LNETCTL lnet configure || exit 1
-       $RUN_NS $LNETCTL net add --net tcp0 --if $FAKE_IF
+       do_lnetctl lnet configure || exit 1
+       do_ns $LNETCTL net add --net tcp0 --if $FAKE_IF
 }
 run_test 5 "add a network using an interface in the non-default namespace"