* [PATCH v2] scripts/device-crash-test: ERROR_RULE_LIST garbage collection
@ 2025-11-28 10:13 Markus Armbruster
2025-11-28 14:01 ` Thomas Huth
2025-12-03 9:59 ` Markus Armbruster
0 siblings, 2 replies; 3+ messages in thread
From: Markus Armbruster @ 2025-11-28 10:13 UTC (permalink / raw)
To: qemu-devel; +Cc: thuth, jsnow
Device 'nand' was dropped in commit commit e86c1f967a3.
Device 'vfio-amd-xgbe' was dropped in commit aeb1a50d4a7.
Device 'vfio-calxeda-xgmac' was dropped in commit 8ebc416ac17.
The last error messages matching r"images* must be given with the
'pflash' parameter" was dropped in commit a2ccff4d2bc.
The error message matching r"Option '-device [\w.,-]+' cannot be
handled by this machine" was dropped in commit commit db78a605599.
The error message matching r"Ignoring smp_cpus value" ceased to match
in commit f2ad5140fa5, and was then dropped in commit 72649619341.
The error message matching r"rom check and register reset failed" was
lost in merge commit af3f37319cb.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
scripts/device-crash-test | 7 -------
1 file changed, 7 deletions(-)
diff --git a/scripts/device-crash-test b/scripts/device-crash-test
index c1576e8b96..f97d9909c0 100755
--- a/scripts/device-crash-test
+++ b/scripts/device-crash-test
@@ -93,7 +93,6 @@ ERROR_RULE_LIST = [
{'device':'ivshmem-doorbell', 'expected':True}, # You must specify a 'chardev'
{'device':'ivshmem-plain', 'expected':True}, # You must specify a 'memdev'
{'device':'loader', 'expected':True}, # please include valid arguments
- {'device':'nand', 'expected':True}, # Unsupported NAND block size 0x1
{'device':'nvdimm', 'expected':True}, # 'memdev' property is not set
{'device':'nvme', 'expected':True}, # Device initialization failed
{'device':'pc-dimm', 'expected':True}, # 'memdev' property is not set
@@ -114,8 +113,6 @@ ERROR_RULE_LIST = [
{'device':'usb-redir', 'expected':True}, # Parameter 'chardev' is missing
{'device':'usb-serial', 'expected':True}, # Property chardev is required
{'device':'usb-storage', 'expected':True}, # drive property not set
- {'device':'vfio-amd-xgbe', 'expected':True}, # -device vfio-amd-xgbe: vfio error: wrong host device name
- {'device':'vfio-calxeda-xgmac', 'expected':True}, # -device vfio-calxeda-xgmac: vfio error: wrong host device name
{'device':'vfio-pci', 'expected':True}, # No provided host device
{'device':'vfio-pci-igd-lpc-bridge', 'expected':True}, # VFIO dummy ISA/LPC bridge must have address 1f.0
{'device':'vhost-scsi.*', 'expected':True}, # vhost-scsi: missing wwpn
@@ -159,7 +156,6 @@ ERROR_RULE_LIST = [
# Silence INFO messages for errors that are common on multiple
# devices/machines:
{'log':r"No '[\w-]+' bus found for device '[\w-]+'"},
- {'log':r"images* must be given with the 'pflash' parameter"},
{'log':r"(Guest|ROM|Flash|Kernel) image must be specified"},
{'log':r"[cC]ould not load [\w ]+ (BIOS|bios) '[\w-]+\.bin'"},
{'log':r"Couldn't find rom image '[\w-]+\.bin'"},
@@ -167,7 +163,6 @@ ERROR_RULE_LIST = [
{'log':r"Can't create a second ISA bus"},
{'log':r"duplicate fw_cfg file name"},
# sysbus-related error messages: most machines reject most dynamic sysbus devices:
- {'log':r"Option '-device [\w.,-]+' cannot be handled by this machine"},
{'log':r"Device [\w.,-]+ is not supported by this machine yet"},
{'log':r"Device [\w.,-]+ can not be dynamically instantiated"},
{'log':r"Platform Bus: Can not fit MMIO region of size "},
@@ -175,11 +170,9 @@ ERROR_RULE_LIST = [
{'device':'.*-spapr-cpu-core', 'log':r"CPU core type should be"},
{'log':r"MSI(-X)? is not supported by interrupt controller"},
{'log':r"pxb-pcie? devices cannot reside on a PCIe? bus"},
- {'log':r"Ignoring smp_cpus value"},
{'log':r"sd_init failed: Drive 'sd0' is already in use because it has been automatically connected to another device"},
{'log':r"This CPU requires a smaller page size than the system is using"},
{'log':r"MSI-X support is mandatory in the S390 architecture"},
- {'log':r"rom check and register reset failed"},
{'log':r"Unable to initialize GIC, CPUState for CPU#0 not valid"},
{'log':r"Multiple VT220 operator consoles are not supported"},
{'log':r"core 0 already populated"},
--
2.49.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2] scripts/device-crash-test: ERROR_RULE_LIST garbage collection
2025-11-28 10:13 [PATCH v2] scripts/device-crash-test: ERROR_RULE_LIST garbage collection Markus Armbruster
@ 2025-11-28 14:01 ` Thomas Huth
2025-12-03 9:59 ` Markus Armbruster
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Huth @ 2025-11-28 14:01 UTC (permalink / raw)
To: Markus Armbruster, qemu-devel; +Cc: jsnow
On 28/11/2025 11.13, Markus Armbruster wrote:
> Device 'nand' was dropped in commit commit e86c1f967a3.
>
> Device 'vfio-amd-xgbe' was dropped in commit aeb1a50d4a7.
>
> Device 'vfio-calxeda-xgmac' was dropped in commit 8ebc416ac17.
>
> The last error messages matching r"images* must be given with the
> 'pflash' parameter" was dropped in commit a2ccff4d2bc.
>
> The error message matching r"Option '-device [\w.,-]+' cannot be
> handled by this machine" was dropped in commit commit db78a605599.
>
> The error message matching r"Ignoring smp_cpus value" ceased to match
> in commit f2ad5140fa5, and was then dropped in commit 72649619341.
>
> The error message matching r"rom check and register reset failed" was
> lost in merge commit af3f37319cb.
>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
> scripts/device-crash-test | 7 -------
> 1 file changed, 7 deletions(-)
Reviewed-by: Thomas Huth <thuth@redhat.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] scripts/device-crash-test: ERROR_RULE_LIST garbage collection
2025-11-28 10:13 [PATCH v2] scripts/device-crash-test: ERROR_RULE_LIST garbage collection Markus Armbruster
2025-11-28 14:01 ` Thomas Huth
@ 2025-12-03 9:59 ` Markus Armbruster
1 sibling, 0 replies; 3+ messages in thread
From: Markus Armbruster @ 2025-12-03 9:59 UTC (permalink / raw)
To: qemu-devel; +Cc: thuth, jsnow
Queued for 11.0.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-12-03 9:59 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-28 10:13 [PATCH v2] scripts/device-crash-test: ERROR_RULE_LIST garbage collection Markus Armbruster
2025-11-28 14:01 ` Thomas Huth
2025-12-03 9: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).