* [Qemu-devel] [PATCH] tests: Fix test 049 fallout from improved HMP error messages
@ 2015-09-22 23:15 Eric Blake
2015-09-22 23:23 ` John Snow
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Eric Blake @ 2015-09-22 23:15 UTC (permalink / raw)
To: qemu-devel; +Cc: kwolf, jsnow, armbru, qemu-block
Commit 50b7b000 improved HMP error messages, but forgot to update
qemu-iotests to match.
Reported-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Eric Blake <eblake@redhat.com>
---
I'm not sure if this should go through Markus' "error" tree,
since that's where the break was introduced, or through a
"block" tree since it touches qemu-iotests.
And now that I have a recipe for running qemu-iotests, I should
have no excuse for repeating this type of mistake :)
tests/qemu-iotests/049.out | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/qemu-iotests/049.out b/tests/qemu-iotests/049.out
index 0425ae0..a2b6703 100644
--- a/tests/qemu-iotests/049.out
+++ b/tests/qemu-iotests/049.out
@@ -118,6 +118,7 @@ qemu-img: kilobytes, megabytes, gigabytes, terabytes, petabytes and exabytes.
qemu-img create -f qcow2 -o size=foobar TEST_DIR/t.qcow2
qemu-img: Parameter 'size' expects a size
+You may use k, M, G or T suffixes for kilobytes, megabytes, gigabytes and terabytes.
qemu-img: TEST_DIR/t.qcow2: Invalid options for file format 'qcow2'
== Check correct interpretation of suffixes for cluster size ==
--
2.4.3
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] tests: Fix test 049 fallout from improved HMP error messages
2015-09-22 23:15 [Qemu-devel] [PATCH] tests: Fix test 049 fallout from improved HMP error messages Eric Blake
@ 2015-09-22 23:23 ` John Snow
2015-09-24 9:38 ` [Qemu-devel] [Qemu-block] " Alberto Garcia
2015-09-24 9:53 ` [Qemu-devel] " Kevin Wolf
2 siblings, 0 replies; 5+ messages in thread
From: John Snow @ 2015-09-22 23:23 UTC (permalink / raw)
To: Eric Blake, qemu-devel; +Cc: kwolf, armbru, qemu-block
On 09/22/2015 07:15 PM, Eric Blake wrote:
> Commit 50b7b000 improved HMP error messages, but forgot to update
> qemu-iotests to match.
>
> Reported-by: Kevin Wolf <kwolf@redhat.com>
> Signed-off-by: Eric Blake <eblake@redhat.com>
> ---
>
> I'm not sure if this should go through Markus' "error" tree,
> since that's where the break was introduced, or through a
> "block" tree since it touches qemu-iotests.
>
> And now that I have a recipe for running qemu-iotests, I should
> have no excuse for repeating this type of mistake :)
>
> tests/qemu-iotests/049.out | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/tests/qemu-iotests/049.out b/tests/qemu-iotests/049.out
> index 0425ae0..a2b6703 100644
> --- a/tests/qemu-iotests/049.out
> +++ b/tests/qemu-iotests/049.out
> @@ -118,6 +118,7 @@ qemu-img: kilobytes, megabytes, gigabytes, terabytes, petabytes and exabytes.
>
> qemu-img create -f qcow2 -o size=foobar TEST_DIR/t.qcow2
> qemu-img: Parameter 'size' expects a size
> +You may use k, M, G or T suffixes for kilobytes, megabytes, gigabytes and terabytes.
> qemu-img: TEST_DIR/t.qcow2: Invalid options for file format 'qcow2'
>
> == Check correct interpretation of suffixes for cluster size ==
>
Grazie,
Reviewed-by: John Snow <jsnow@redhat.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [Qemu-block] [PATCH] tests: Fix test 049 fallout from improved HMP error messages
2015-09-22 23:15 [Qemu-devel] [PATCH] tests: Fix test 049 fallout from improved HMP error messages Eric Blake
2015-09-22 23:23 ` John Snow
@ 2015-09-24 9:38 ` Alberto Garcia
2015-09-24 9:53 ` [Qemu-devel] " Kevin Wolf
2 siblings, 0 replies; 5+ messages in thread
From: Alberto Garcia @ 2015-09-24 9:38 UTC (permalink / raw)
To: Eric Blake, qemu-devel; +Cc: kwolf, armbru, qemu-block
On Wed 23 Sep 2015 01:15:52 AM CEST, Eric Blake <eblake@redhat.com> wrote:
> Commit 50b7b000 improved HMP error messages, but forgot to update
> qemu-iotests to match.
>
> Reported-by: Kevin Wolf <kwolf@redhat.com>
> Signed-off-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Alberto Garcia <berto@igalia.com>
Berto
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] tests: Fix test 049 fallout from improved HMP error messages
2015-09-22 23:15 [Qemu-devel] [PATCH] tests: Fix test 049 fallout from improved HMP error messages Eric Blake
2015-09-22 23:23 ` John Snow
2015-09-24 9:38 ` [Qemu-devel] [Qemu-block] " Alberto Garcia
@ 2015-09-24 9:53 ` Kevin Wolf
2015-09-24 11:59 ` Markus Armbruster
2 siblings, 1 reply; 5+ messages in thread
From: Kevin Wolf @ 2015-09-24 9:53 UTC (permalink / raw)
To: Eric Blake; +Cc: jsnow, qemu-devel, qemu-block, armbru
Am 23.09.2015 um 01:15 hat Eric Blake geschrieben:
> Commit 50b7b000 improved HMP error messages, but forgot to update
> qemu-iotests to match.
>
> Reported-by: Kevin Wolf <kwolf@redhat.com>
> Signed-off-by: Eric Blake <eblake@redhat.com>
Thanks, applied to the block branch.
> I'm not sure if this should go through Markus' "error" tree,
> since that's where the break was introduced, or through a
> "block" tree since it touches qemu-iotests.
Doesn't really matter as long as someone takes it. And if both took
it, I think git should be clever enough to figure it out without merge
conflicts.
Kevin
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] tests: Fix test 049 fallout from improved HMP error messages
2015-09-24 9:53 ` [Qemu-devel] " Kevin Wolf
@ 2015-09-24 11:59 ` Markus Armbruster
0 siblings, 0 replies; 5+ messages in thread
From: Markus Armbruster @ 2015-09-24 11:59 UTC (permalink / raw)
To: Kevin Wolf; +Cc: jsnow, qemu-devel, qemu-block
Kevin Wolf <kwolf@redhat.com> writes:
> Am 23.09.2015 um 01:15 hat Eric Blake geschrieben:
>> Commit 50b7b000 improved HMP error messages, but forgot to update
>> qemu-iotests to match.
>>
>> Reported-by: Kevin Wolf <kwolf@redhat.com>
>> Signed-off-by: Eric Blake <eblake@redhat.com>
>
> Thanks, applied to the block branch.
>
>> I'm not sure if this should go through Markus' "error" tree,
>> since that's where the break was introduced, or through a
>> "block" tree since it touches qemu-iotests.
You copied both maintainers, so they can figure it out. Good move.
> Doesn't really matter as long as someone takes it. And if both took
> it, I think git should be clever enough to figure it out without merge
> conflicts.
Since you took it, I won't. Thanks!
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-09-24 11:59 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-22 23:15 [Qemu-devel] [PATCH] tests: Fix test 049 fallout from improved HMP error messages Eric Blake
2015-09-22 23:23 ` John Snow
2015-09-24 9:38 ` [Qemu-devel] [Qemu-block] " Alberto Garcia
2015-09-24 9:53 ` [Qemu-devel] " Kevin Wolf
2015-09-24 11:59 ` Markus Armbruster
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).