summaryrefslogtreecommitdiffstats
path: root/tests/bugs/bug-961307.t
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs/bug-961307.t')
-rw-r--r--tests/bugs/bug-961307.t32
1 files changed, 0 insertions, 32 deletions
diff --git a/tests/bugs/bug-961307.t b/tests/bugs/bug-961307.t
deleted file mode 100644
index 96e93a56f8d..00000000000
--- a/tests/bugs/bug-961307.t
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/bash
-
-. $(dirname $0)/../include.rc
-. $(dirname $0)/../volume.rc
-
-cleanup;
-
-REPLICA=2
-
-TEST glusterd
-TEST pidof glusterd
-
-TEST $CLI volume create $V0 replica $REPLICA $H0:$B0/${V0}-00 $H0:$B0/${V0}-01 $H0:$B0/${V0}-10 $H0:$B0/${V0}-11
-TEST $CLI volume start $V0
-
-var1=$(gluster volume remove-brick $H0:$B0/${V0}-00 $H0:$B0/${V0}-01 start 2>&1)
-var2="volume remove-brick start: failed: Volume $H0:$B0/${V0}-00 does not exist"
-
-
-function compare_string()
-{
- val="-1"
- if [ "$1" == "$2" ]; then
- val="0"
- else
- val="1"
- fi
- echo $val
-}
-
-EXPECT 0 compare_string "$var1" "$var2"
-cleanup;