2007-11-12 14:07:37 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Ensure that an invalid domain ID isn't interpreted as a valid one.
|
|
|
|
# Before, an ID of 2^32+2 would be treated just like an ID of 2.
|
|
|
|
|
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)/..
|
|
|
|
|
|
|
|
if test "$VERBOSE" = yes; then
|
|
|
|
set -x
|
|
|
|
$abs_top_builddir/tools/virsh --version
|
|
|
|
fi
|
|
|
|
|
|
|
|
. "$srcdir/test-lib.sh"
|
2007-11-12 14:07:37 +00:00
|
|
|
|
|
|
|
echo "error: failed to get domain '4294967298'" > exp || fail=1
|
2009-09-16 11:01:53 +00:00
|
|
|
echo domname 4294967298 | $abs_top_builddir/tools/virsh --quiet \
|
2009-09-16 18:02:59 +00:00
|
|
|
--connect test://$abs_top_srcdir/examples/xml/test/testnode.xml \
|
2007-11-12 14:07:37 +00:00
|
|
|
> /dev/null 2> err || fail=1
|
|
|
|
diff -u err exp || fail=1
|
|
|
|
|
|
|
|
exit $fail
|