summaryrefslogtreecommitdiffstats
path: root/dvm/2140/testcase
blob: be0b9808b504ab9995d03cce2326ebb99c15744c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

source ./init
source ./regression_helpers

GLUSTERD_DIR=$(dirname $GLUSTERD);
mkdir $EXPORT_DIR/$global_bug_id/;

$GLUSTERD_DIR/gluster volume delete abcdsdrgf --mode=script | grep -i "exist" 2>/dev/null 1>/dev/null
if [ $? -ne 0 ]; then
    echo -n "$global_bug_id: "
    not_ok;
else
    echo -n "$global_bug_id: "
    ok;
fi

test_kill;

test_cleanup;