Skip to content
Snippets Groups Projects
Commit fbde3ae8 authored by Bin Meng's avatar Bin Meng Committed by Thomas Huth
Browse files

tests/qtest: device-plug-test: Reverse the usage of double/single quotes


The usage of double/single quotes in test_pci_unplug_json_request()
should be reversed to work on both win32 and non-win32 platforms:

- The value of -device parameter needs to be surrounded by "" as
  Windows does not drop '' when passing it to QEMU which causes
  QEMU command line option parser failure.
- The JSON key/value pairs need to be surrounded by '' to make the
  JSON parser happy on Windows.

Signed-off-by: default avatarBin Meng <bin.meng@windriver.com>
Reviewed-by: default avatarThomas Huth <thuth@redhat.com>
Message-Id: <20220824094029.1634519-36-bmeng.cn@gmail.com>
Signed-off-by: default avatarThomas Huth <thuth@redhat.com>
parent b243c73c
No related branches found
No related tags found
No related merge requests found
......@@ -95,7 +95,7 @@ static void test_pci_unplug_json_request(void)
}
QTestState *qtest = qtest_initf(
"%s -device '{\"driver\": \"virtio-mouse-pci\", \"id\": \"dev0\"}'",
"%s -device \"{'driver': 'virtio-mouse-pci', 'id': 'dev0'}\"",
machine_addition);
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment