From 4b8244df9d0851ae82cfef5cce359233af7812c8 Mon Sep 17 00:00:00 2001 From: Amar Tumballi Date: Fri, 31 May 2019 08:53:58 +0530 Subject: lcov: more coverage to shard, old-protocol, sdfs updates: bz#1693692 Change-Id: If4c30572d4501d169bb4b0871c677d974515867c Signed-off-by: Amar Tumballi --- tests/line-coverage/old-protocol.t | 6 ++++++ tests/line-coverage/shard-coverage.t | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 tests/line-coverage/shard-coverage.t (limited to 'tests/line-coverage') diff --git a/tests/line-coverage/old-protocol.t b/tests/line-coverage/old-protocol.t index 3664c79d644..46ea1f3b019 100755 --- a/tests/line-coverage/old-protocol.t +++ b/tests/line-coverage/old-protocol.t @@ -28,4 +28,10 @@ TEST $GFS -s $H0 --volfile-id $V0 $M1; ## which covers maximum fops TEST $(dirname $0)/../basic/rpc-coverage.sh $M1 +TEST cp $(dirname ${0})/../../api/examples/glfsxmp.c glfsxmp.c +TEST build_tester ./glfsxmp.c -lgfapi +TEST ./glfsxmp $V0 $H0 +TEST cleanup_tester ./glfsxmp +TEST rm ./glfsxmp.c + cleanup; diff --git a/tests/line-coverage/shard-coverage.t b/tests/line-coverage/shard-coverage.t new file mode 100644 index 00000000000..5e18d28c998 --- /dev/null +++ b/tests/line-coverage/shard-coverage.t @@ -0,0 +1,33 @@ +#!/bin/bash + +. $(dirname $0)/../include.rc +. $(dirname $0)/../volume.rc + +cleanup + +TEST glusterd + +TEST $CLI volume create $V0 $H0:$B0/brick +TEST $CLI volume set $V0 features.shard on +EXPECT 'Created' volinfo_field $V0 'Status' + +TEST $CLI volume start $V0 +EXPECT 'Started' volinfo_field $V0 'Status' + +# It is good to copy the file locally and build it, so the scope remains +# inside tests directory. +TEST cp $(dirname ${0})/../../api/examples/glfsxmp.c glfsxmp.c +TEST build_tester ./glfsxmp.c -lgfapi +TEST ./glfsxmp $V0 $H0 +TEST cleanup_tester ./glfsxmp +TEST rm ./glfsxmp.c + +TEST $GFS -s $H0 --volfile-id $V0 $M1; + +TEST $(dirname $0)/../basic/rpc-coverage.sh $M1 + + +TEST $CLI volume stop $V0 +TEST $CLI volume delete $V0 + +cleanup -- cgit