summaryrefslogtreecommitdiffstats
path: root/tests/bugs
diff options
context:
space:
mode:
authorRaghavendra Bhat <raghavendra@redhat.com>2014-06-16 19:08:18 +0530
committerVijay Bellur <vbellur@redhat.com>2014-06-20 03:34:24 -0700
commit9d2b7cd3e8161f557390b5b434464362a0ba7a16 (patch)
treee313407ccf7cc3cc7a83b66d8c8a2c2f09367235 /tests/bugs
parent78e9180ca24f15e1366eb3d51cbb5e4576af91a2 (diff)
tests: changes to some of the uss testcases
Made the below changes tests/basic/uss.t: removed the older way of getting the list of snapshots bugs/bug/bug-1109770.t: added uss disable test also to check snapd behavior Change-Id: I57b6bc8fa82bcaa544f483ad382e1bb4d11ef122 BUG: 1092850 Signed-off-by: Raghavendra Bhat <raghavendra@redhat.com> Reviewed-on: http://review.gluster.org/8081 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'tests/bugs')
-rw-r--r--tests/bugs/bug-1109770.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/bugs/bug-1109770.t b/tests/bugs/bug-1109770.t
index 3ee43e3e304..139c1022e5b 100644
--- a/tests/bugs/bug-1109770.t
+++ b/tests/bugs/bug-1109770.t
@@ -48,13 +48,13 @@ SNAPD_PID=$(ps aux | grep snapd | grep -v grep | awk '{print $2}');
TEST [ $SNAPD_PID -gt 0 ];
-TEST $CLI volume stop $V0;
+TEST $CLI volume set $V0 features.uss disable;
SNAPD_PID=$(ps aux | grep snapd | grep -v grep | awk '{print $2}');
TEST ! [ $SNAPD_PID -gt 0 ];
-TEST $CLI volume start $V0;
+TEST $CLI volume set $V0 features.uss enable;
SNAPD_PID=$(ps aux | grep snapd | grep -v grep | awk '{print $2}');