diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2019-11-18 17:06:17 +0000 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2019-11-18 17:06:17 +0000 |
| commit | a5c2a235103ab366ad5318636ec138e52c6dcfa4 (patch) | |
| tree | 803b176647a9894516d862e436de458cecb2d35b /tests/qemu-iotests/iotests.py | |
| parent | 1bd0f1c9c149c2fb738f381099cec7ad0ee224a9 (diff) | |
| parent | b1f6a8e180367c945b67c6c9bbcec5c856be3779 (diff) | |
| download | focaccia-qemu-a5c2a235103ab366ad5318636ec138e52c6dcfa4.tar.gz focaccia-qemu-a5c2a235103ab366ad5318636ec138e52c6dcfa4.zip | |
Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging
Block layer patches:
- Fix HMP savevm with -blockdev
- Minor iotests improvements
# gpg: Signature made Mon 18 Nov 2019 16:51:56 GMT
# gpg: using RSA key 7F09B272C88F2FD6
# gpg: Good signature from "Kevin Wolf <kwolf@redhat.com>" [full]
# Primary key fingerprint: DC3D EB15 9A9A F95D 3D74 56FE 7F09 B272 C88F 2FD6
* remotes/kevin/tags/for-upstream:
iotests: Test multiple blockdev-snapshot calls
block: Remove 'backing': null from bs->{explicit_,}options
iotests: Fix "no qualified output" error path
qemu-iotests/iotests.py: improve assert_qmp message
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'tests/qemu-iotests/iotests.py')
| -rw-r--r-- | tests/qemu-iotests/iotests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py index 075f4739da..6a248472b9 100644 --- a/tests/qemu-iotests/iotests.py +++ b/tests/qemu-iotests/iotests.py @@ -731,8 +731,8 @@ class QMPTestCase(unittest.TestCase): self.fail('no match for "%s" in %s' % (str(result), str(value))) else: self.assertEqual(result, value, - 'values not equal "%s" and "%s"' - % (str(result), str(value))) + '"%s" is "%s", expected "%s"' + % (path, str(result), str(value))) def assert_no_active_block_jobs(self): result = self.vm.qmp('query-block-jobs') |