From 7141fc7a275498f650d1a9c94e785453d7e3577a Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Mon, 4 Jan 2016 19:46:31 +0100 Subject: [PATCH] test: Touch up error message when attempting to pin invalid vCPU Report error: invalid argument: requested vcpu '100' is not present in the domain instead of error: invalid argument: requested vcpu is higher than allocated vcpus --- src/test/test_driver.c | 5 +++-- tests/vcpupin | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/test/test_driver.c b/src/test/test_driver.c index 8d1402e4b2..37108abd23 100644 --- a/src/test/test_driver.c +++ b/src/test/test_driver.c @@ -2508,8 +2508,9 @@ static int testDomainPinVcpu(virDomainPtr domain, } if (vcpu > virDomainDefGetVcpus(privdom->def)) { - virReportError(VIR_ERR_INVALID_ARG, "%s", - _("requested vcpu is higher than allocated vcpus")); + virReportError(VIR_ERR_INVALID_ARG, + _("requested vcpu '%d' is not present in the domain"), + vcpu); goto cleanup; } diff --git a/tests/vcpupin b/tests/vcpupin index 213db9357f..9e656c0aa1 100755 --- a/tests/vcpupin +++ b/tests/vcpupin @@ -43,7 +43,7 @@ compare exp out || fail=1 $abs_top_builddir/tools/virsh --connect test:///default vcpupin test 100 0,1 > out 2>&1 test $? = 1 || fail=1 cat <<\EOF > exp || fail=1 -error: invalid argument: requested vcpu is higher than allocated vcpus +error: invalid argument: requested vcpu '100' is not present in the domain EOF compare exp out || fail=1 -- GitLab