Files
libvirt/tests/int-overflow
T

23 lines
676 B
Bash
Raw Normal View History

2011-07-29 14:17:48 +02:00
#!/bin/sh
2007-11-12 14:07:37 +00:00
# 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 09:32:10 +02: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
2011-03-23 14:16:02 -06:00
$abs_top_builddir/tools/virsh --quiet \
2009-09-16 19:02:59 +01:00
--connect test://$abs_top_srcdir/examples/xml/test/testnode.xml \
2011-03-23 14:16:02 -06:00
'domname 4294967298; quit' > /dev/null 2> err || fail=1
2007-11-12 14:07:37 +00:00
diff -u err exp || fail=1
exit $fail