[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 2/3] iotests: port 141 to Python for reliable QMP testing
From: |
Kevin Wolf |
Subject: |
Re: [PATCH 2/3] iotests: port 141 to Python for reliable QMP testing |
Date: |
Wed, 17 Jan 2024 19:04:06 +0100 |
Am 16.01.2024 um 20:00 hat Stefan Hajnoczi geschrieben:
> The common.qemu bash functions allow tests to interact with the QMP
> monitor of a QEMU process. I spent two days trying to update 141 when
> the order of the test output changed, but found it would still fail
> occassionally because printf() and QMP events race with synchronous QMP
> communication.
>
> I gave up and ported 141 to the existing Python API for QMP tests. The
> Python API is less affected by the order in which QEMU prints output
> because it does not print all QMP traffic by default.
>
> The next commit changes the order in which QMP messages are received.
> Make 141 reliable first.
>
> Cc: Hanna Czenczek <hreitz@redhat.com>
> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
iotests 297 finds problems with the new Python code:
=== pylint ===
+************* Module 141
+141:82:0: C0301: Line too long (86/79) (line-too-long)
+141:93:0: C0301: Line too long (86/79) (line-too-long)
+141:94:0: C0301: Line too long (80/79) (line-too-long)
+141:106:0: C0301: Line too long (85/79) (line-too-long)
+141:107:0: C0301: Line too long (82/79) (line-too-long)
+141:109:0: C0301: Line too long (82/79) (line-too-long)
+141:117:0: C0301: Line too long (86/79) (line-too-long)
+141:120:0: C0301: Line too long (86/79) (line-too-long)
+141:129:0: C0301: Line too long (86/79) (line-too-long)
=== mypy ===
+141:104: error: Value of type variable "Msg" of "log" cannot be "dict[str,
Any] | None" [type-var]
+141:114: error: Value of type variable "Msg" of "log" cannot be "dict[str,
Any] | None" [type-var]
+Found 2 errors in 1 file (checked 37 source files)
Kevin