summaryrefslogtreecommitdiffstats
path: root/tests/usb-hcd-xhci-test.c
diff options
context:
space:
mode:
authorAndrey Shinkevich2019-07-29 14:46:00 +0200
committerThomas Huth2019-08-15 19:23:59 +0200
commitca1ef1e62e581f61c40f8be49d222007739691c4 (patch)
treea44dd28fac7c1cbdd918227bac161b408983dd74 /tests/usb-hcd-xhci-test.c
parentlibqos: Account for the ctrl queue in virtio-net (diff)
downloadqemu-ca1ef1e62e581f61c40f8be49d222007739691c4.tar.gz
qemu-ca1ef1e62e581f61c40f8be49d222007739691c4.tar.xz
qemu-ca1ef1e62e581f61c40f8be49d222007739691c4.zip
tests: Set read-zeroes on for null-co driver
This patch is to reduce the number of Valgrind report messages about using uninitialized memory with the null-co driver. It helps to filter real memory issues and is the same work done for the iotests with the commit ID a6862418fec4072. Suggested-by: Kevin Wolf <kwolf@redhat.com> Signed-off-by: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com> Message-Id: <1564404360-733987-1-git-send-email-andrey.shinkevich@virtuozzo.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/usb-hcd-xhci-test.c')
-rw-r--r--tests/usb-hcd-xhci-test.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/usb-hcd-xhci-test.c b/tests/usb-hcd-xhci-test.c
index 9eb24b00e4..b15a51123f 100644
--- a/tests/usb-hcd-xhci-test.c
+++ b/tests/usb-hcd-xhci-test.c
@@ -56,7 +56,8 @@ int main(int argc, char **argv)
qtest_add_func("/xhci/pci/hotplug/usb-ccid", test_usb_ccid_hotplug);
qtest_start("-device nec-usb-xhci,id=xhci"
- " -drive id=drive0,if=none,file=null-co://,format=raw");
+ " -drive id=drive0,if=none,file=null-co://,"
+ "file.read-zeroes=on,format=raw");
ret = g_test_run();
qtest_end();