mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
fuzz: Avoid deprecated misuse of -drive if=sd
qemu-fuzz-i386-target-generic-fuzz-sdhci-v3 uses -drive=sd where it should use -drive if=none instead. This prints a deprecation warning: $ ./build-oss-fuzz/DEST_DIR/qemu-fuzz-i386-target-generic-fuzz-sdhci-v3 -runs=1 -seed=1 [ASan warnings snipped...] --> i386: -drive if=sd,index=0,file=null-co://,format=raw,id=mydrive: warning: bogus if=sd is deprecated, use if=none INFO: Seed: 1 [More normal output snipped...] Support for this usage will be gone soon. Adjust the test. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20210319132008.1830950-1-armbru@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
This commit is contained in:
parent
92566947b3
commit
9585376ab5
1 changed files with 1 additions and 1 deletions
|
@ -182,7 +182,7 @@ const generic_fuzz_config predefined_configs[] = {
|
|||
.name = "sdhci-v3",
|
||||
.args = "-nodefaults -device sdhci-pci,sd-spec-version=3 "
|
||||
"-device sd-card,drive=mydrive "
|
||||
"-drive if=sd,index=0,file=null-co://,format=raw,id=mydrive -nographic",
|
||||
"-drive if=none,index=0,file=null-co://,format=raw,id=mydrive -nographic",
|
||||
.objects = "sd*"
|
||||
},{
|
||||
.name = "ehci",
|
||||
|
|
Loading…
Reference in a new issue