diff options
author | Eric Blake <eblake@redhat.com> | 2020-05-21 14:21:33 -0500 |
---|---|---|
committer | Eric Blake <eblake@redhat.com> | 2020-05-28 13:15:23 -0500 |
commit | ca01b7a641527052e3e8961845b40b81706ce5f9 (patch) | |
tree | 0f2744f0baff140b2014553c9830d0492e303d8c /tests | |
parent | 4ff5cc121b089d8b16fa3da1e44feababcd1f815 (diff) | |
download | qemu-ca01b7a641527052e3e8961845b40b81706ce5f9.zip qemu-ca01b7a641527052e3e8961845b40b81706ce5f9.tar.gz qemu-ca01b7a641527052e3e8961845b40b81706ce5f9.tar.bz2 |
iotests: Fix test 178
A recent change to qemu-img changed expected error message output, but
178 takes long enough to execute that it does not get run by 'make
check' or './check -g quick'.
Fixes: 43d589b074
Signed-off-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-Id: <20200521192137.1120211-2-eblake@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/qemu-iotests/178.out.qcow2 | 2 | ||||
-rw-r--r-- | tests/qemu-iotests/178.out.raw | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/qemu-iotests/178.out.qcow2 b/tests/qemu-iotests/178.out.qcow2 index f59bf4b..4b69524 100644 --- a/tests/qemu-iotests/178.out.qcow2 +++ b/tests/qemu-iotests/178.out.qcow2 @@ -13,7 +13,7 @@ qemu-img: Invalid option list: , qemu-img: Invalid parameter 'snapshot.foo' qemu-img: Failed in parsing snapshot param 'snapshot.foo' qemu-img: --output must be used with human or json as argument. -qemu-img: Image size must be less than 8 EiB! +qemu-img: Invalid image size specified. Must be between 0 and 9223372036854775807. qemu-img: Unknown file format 'foo' == Size calculation for a new file (human) == diff --git a/tests/qemu-iotests/178.out.raw b/tests/qemu-iotests/178.out.raw index 404ca90..20e17da 100644 --- a/tests/qemu-iotests/178.out.raw +++ b/tests/qemu-iotests/178.out.raw @@ -13,7 +13,7 @@ qemu-img: Invalid option list: , qemu-img: Invalid parameter 'snapshot.foo' qemu-img: Failed in parsing snapshot param 'snapshot.foo' qemu-img: --output must be used with human or json as argument. -qemu-img: Image size must be less than 8 EiB! +qemu-img: Invalid image size specified. Must be between 0 and 9223372036854775807. qemu-img: Unknown file format 'foo' == Size calculation for a new file (human) == |