summaryrefslogtreecommitdiffstats
path: root/tests/bugs/distribute/bug-1063230.t
blob: 944c6c296f6017ff05eff3bbeb6290755524d0ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash

. $(dirname $0)/../../include.rc
. $(dirname $0)/../../volume.rc

cleanup;

TEST glusterd
TEST pidof glusterd
TEST $CLI volume create $V0 $H0:$B0/brick0 $H0:$B0/brick1
TEST $CLI volume start $V0

sleep 5

TEST glusterfs -s $H0 --volfile-id $V0 $M0

var=`gluster volume rebalance $V0 start force`

EXPECT "0" echo $?

var1="volume rebalance: $V0: success: Rebalance on $V0 has \
been started successfully. Use rebalance status command to \
check status of the rebalance process."

echo $var | grep "$var1"

EXPECT "0" echo $?

cleanup