2009-03-02 20:01:05 +00:00
|
|
|
#!/bin/sh
|
2009-03-04 13:04:06 +00:00
|
|
|
# Get coverage of virsh pool-define-as XML formatting
|
2009-03-02 20:01:05 +00:00
|
|
|
|
2009-09-23 07:32:10 +00:00
|
|
|
test -z "$srcdir" && srcdir=$(pwd)
|
|
|
|
test -z "$abs_top_srcdir" && abs_top_srcdir=$(pwd)/..
|
|
|
|
test -z "$abs_top_builddir" && abs_top_builddir=$(pwd)/..
|
|
|
|
|
2009-03-02 20:01:05 +00:00
|
|
|
if test "$VERBOSE" = yes; then
|
|
|
|
set -x
|
2009-09-23 07:32:10 +00:00
|
|
|
$abs_top_builddir/tools/virsh --version
|
2009-03-02 20:01:05 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
. "$srcdir/test-lib.sh"
|
|
|
|
|
|
|
|
fail=0
|
|
|
|
|
|
|
|
pwd=$(pwd) || fail=1
|
|
|
|
|
2009-09-23 07:32:10 +00:00
|
|
|
$abs_top_builddir/tools/virsh --connect test:///default \
|
2009-03-04 13:04:06 +00:00
|
|
|
pool-define-as --print-xml \
|
|
|
|
P dir src-host /src/path /src/dev S /target-path \
|
|
|
|
1>out 2>&1
|
2009-03-02 20:01:05 +00:00
|
|
|
|
|
|
|
cat <<EOF > pool-list-exp
|
|
|
|
<pool type='dir'>
|
|
|
|
<name>P</name>
|
|
|
|
<source>
|
2009-03-04 13:04:06 +00:00
|
|
|
<host name='src-host'/>
|
|
|
|
<dir path='/src/path'/>
|
|
|
|
<device path='/src/dev'/>
|
|
|
|
<name>S</name>
|
2009-03-02 20:01:05 +00:00
|
|
|
</source>
|
|
|
|
<target>
|
|
|
|
<path>/target-path</path>
|
|
|
|
</target>
|
|
|
|
</pool>
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
compare pool-list-exp out || fail=1
|
|
|
|
|
|
|
|
exit $fail
|