File: bug-1004218.t

package info (click to toggle)
glusterfs 11.2-2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 28,244 kB
  • sloc: ansic: 471,238; sh: 45,610; python: 16,893; perl: 3,328; makefile: 2,014; yacc: 487; ruby: 171; lisp: 124; xml: 75; lex: 61
file content (26 lines) | stat: -rw-r--r-- 454 bytes parent folder | download | duplicates (8)
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
#!/bin/bash

# Test if only a single xml document is generated by 'status all'
# when a volume is not started

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

cleanup;

TEST glusterd

TEST $CLI volume create ${V0}1 $H0:$B0/${V0}1{1,2}
TEST $CLI volume create ${V0}2 $H0:$B0/${V0}2{1,2}

TEST $CLI volume start ${V0}1

function test_status_all ()
{
        $CLI volume status all --xml | xmllint -format -
}

TEST test_status_all

TEST $CLI volume stop ${V0}1

cleanup