* tests/vcpupin: Add a test for the 2008-04-04 virsh.c bugfix.

This commit is contained in:
Jim Meyering 2008-04-07 12:12:34 +00:00
parent 67b17df9d2
commit 7c61b48202
2 changed files with 14 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Mon Apr 7 14:36:56 CET 2008 Jim Meyering <meyering@redhat.com>
* tests/vcpupin: Add a test for the 2008-04-04 virsh.c bugfix.
Mon Apr 7 12:53:01 CEST 2008 Daniel Veillard <veillard@redhat.com>
* docs/bugs.html docs/libvir.html: update the page bugzilla URIs

View File

@ -24,14 +24,23 @@ fi
. $srcdir/test-lib.sh
fail=0
# Invalid syntax.
virsh --connect test:///default vcpupin test a 0,1 > out 2>&1
test $? = 1 || fail=1
cat <<\EOF > exp || fail=1
error: vcpupin: Invalid or missing vCPU number.
EOF
compare out exp || fail=1
# An out-of-range vCPU number deserves a diagnostic, too.
virsh --connect test:///default vcpupin test 100 0,1 > out 2>&1
test $? = 1 || fail=1
cat <<\EOF > exp || fail=1
error: vcpupin: Invalid vCPU number.
EOF
compare out exp || fail=1
(exit $fail); exit $fail