diff options
author | Connor Kuehl <ckuehl@redhat.com> | 2021-03-18 15:09:49 -0500 |
---|---|---|
committer | Max Reitz <mreitz@redhat.com> | 2021-03-29 14:13:55 +0200 |
commit | c00316e9b2abc75dcf5c8ba5608e35c2f4ec7983 (patch) | |
tree | eb3b327be4933d48200c5f0d686ea0d10e4ade78 | |
parent | 93d8d1293b7ebda45f07849cfc9698715c5748d6 (diff) | |
download | qemu-c00316e9b2abc75dcf5c8ba5608e35c2f4ec7983.zip qemu-c00316e9b2abc75dcf5c8ba5608e35c2f4ec7983.tar.gz qemu-c00316e9b2abc75dcf5c8ba5608e35c2f4ec7983.tar.bz2 |
iotests: fix 051.out expected output after error text touchups
A patch was recently applied that touched up some error messages that
pertained to key names like 'node-name'. The trouble is it only updated
tests/qemu-iotests/051.pc.out and not tests/qemu-iotests/051.out as
well.
Do that now.
Fixes: 785ec4b1b9 ("block: Clarify error messages pertaining to
'node-name'")
Signed-off-by: Connor Kuehl <ckuehl@redhat.com>
Message-Id: <20210318200949.1387703-2-ckuehl@redhat.com>
Tested-by: Christian Borntraeger <borntraeger@de.ibm.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>
-rw-r--r-- | tests/qemu-iotests/051.out | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/qemu-iotests/051.out b/tests/qemu-iotests/051.out index 437053c..441f83e 100644 --- a/tests/qemu-iotests/051.out +++ b/tests/qemu-iotests/051.out @@ -61,13 +61,13 @@ QEMU X.Y.Z monitor - type 'help' for more information (qemu) quit Testing: -drive file=TEST_DIR/t.qcow2,node-name=123foo -QEMU_PROG: -drive file=TEST_DIR/t.qcow2,node-name=123foo: Invalid node name +QEMU_PROG: -drive file=TEST_DIR/t.qcow2,node-name=123foo: Invalid node-name: '123foo' Testing: -drive file=TEST_DIR/t.qcow2,node-name=_foo -QEMU_PROG: -drive file=TEST_DIR/t.qcow2,node-name=_foo: Invalid node name +QEMU_PROG: -drive file=TEST_DIR/t.qcow2,node-name=_foo: Invalid node-name: '_foo' Testing: -drive file=TEST_DIR/t.qcow2,node-name=foo#12 -QEMU_PROG: -drive file=TEST_DIR/t.qcow2,node-name=foo#12: Invalid node name +QEMU_PROG: -drive file=TEST_DIR/t.qcow2,node-name=foo#12: Invalid node-name: 'foo#12' === Device without drive === |