[libvirt] [PATCH v3 0/7] qemu: Better xml->argv testing and add support for write-cache for disks (blockdev-add saga)

Peter Krempa posted 7 patches 6 years ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/cover.1524065411.git.pkrempa@redhat.com
Test syntax-check passed
src/qemu/qemu_capabilities.c                       |  5 ++
src/qemu/qemu_capabilities.h                       |  1 +
src/qemu/qemu_command.c                            | 27 +++++++
src/qemu/qemu_domain.c                             | 75 +++++++++++++++++++
src/qemu/qemu_domain.h                             |  6 ++
tests/qemucapabilitiesdata/caps_2.10.0.aarch64.xml |  1 +
tests/qemucapabilitiesdata/caps_2.10.0.ppc64.xml   |  1 +
tests/qemucapabilitiesdata/caps_2.10.0.s390x.xml   |  1 +
tests/qemucapabilitiesdata/caps_2.10.0.x86_64.xml  |  1 +
tests/qemucapabilitiesdata/caps_2.11.0.s390x.xml   |  1 +
tests/qemucapabilitiesdata/caps_2.12.0.aarch64.xml |  1 +
tests/qemucapabilitiesdata/caps_2.12.0.ppc64.xml   |  1 +
tests/qemucapabilitiesdata/caps_2.12.0.s390x.xml   |  1 +
tests/qemucapabilitiesdata/caps_2.12.0.x86_64.xml  |  1 +
tests/qemucapabilitiesdata/caps_2.7.0.s390x.xml    |  1 +
tests/qemucapabilitiesdata/caps_2.7.0.x86_64.xml   |  1 +
tests/qemucapabilitiesdata/caps_2.8.0.s390x.xml    |  1 +
tests/qemucapabilitiesdata/caps_2.8.0.x86_64.xml   |  1 +
tests/qemucapabilitiesdata/caps_2.9.0.ppc64.xml    |  1 +
tests/qemucapabilitiesdata/caps_2.9.0.s390x.xml    |  1 +
tests/qemucapabilitiesdata/caps_2.9.0.x86_64.xml   |  1 +
.../disk-drive-write-cache.x86_64-2.6.0.args       | 43 +++++++++++
.../disk-drive-write-cache.x86_64-2.7.0.args       | 45 ++++++++++++
.../disk-drive-write-cache.x86_64-latest.args      | 47 ++++++++++++
tests/qemuxml2argvdata/disk-drive-write-cache.xml  | 45 ++++++++++++
tests/qemuxml2argvtest.c                           | 83 +++++++++++++++++++++-
tests/testutilsqemu.c                              | 63 ++++++++++++++++
tests/testutilsqemu.h                              |  5 ++
28 files changed, 458 insertions(+), 3 deletions(-)
create mode 100644 tests/qemuxml2argvdata/disk-drive-write-cache.x86_64-2.6.0.args
create mode 100644 tests/qemuxml2argvdata/disk-drive-write-cache.x86_64-2.7.0.args
create mode 100644 tests/qemuxml2argvdata/disk-drive-write-cache.x86_64-latest.args
create mode 100644 tests/qemuxml2argvdata/disk-drive-write-cache.xml
[libvirt] [PATCH v3 0/7] qemu: Better xml->argv testing and add support for write-cache for disks (blockdev-add saga)
Posted by Peter Krempa 6 years ago
Version 3:
 - renamed the testing macros
 - removed hand-rolled code to compare versions
 - fixed the test case to demonstrate usage of the new test-suite
 - reworded comment in test suite on how to use it

Peter Krempa (7):
  tests: qemu: Add helper code to lookup latest capability file
  tests: qemuxml2argv: Add infrastructure to pass output file suffix
  tests: qemuxml2argv: Add infrastructure for testing with real qemuCaps
  qemu: domain: Add helper for translating disk cachemode to qemu flags
  tests: qemuxml2argv: Test formatting of 'write-cache' parameter
  qemu: caps: Add capability for 'write-cache' parameter of disk
    frontends
  qemu: Format 'write-cache' parameter for disk frontends

 src/qemu/qemu_capabilities.c                       |  5 ++
 src/qemu/qemu_capabilities.h                       |  1 +
 src/qemu/qemu_command.c                            | 27 +++++++
 src/qemu/qemu_domain.c                             | 75 +++++++++++++++++++
 src/qemu/qemu_domain.h                             |  6 ++
 tests/qemucapabilitiesdata/caps_2.10.0.aarch64.xml |  1 +
 tests/qemucapabilitiesdata/caps_2.10.0.ppc64.xml   |  1 +
 tests/qemucapabilitiesdata/caps_2.10.0.s390x.xml   |  1 +
 tests/qemucapabilitiesdata/caps_2.10.0.x86_64.xml  |  1 +
 tests/qemucapabilitiesdata/caps_2.11.0.s390x.xml   |  1 +
 tests/qemucapabilitiesdata/caps_2.12.0.aarch64.xml |  1 +
 tests/qemucapabilitiesdata/caps_2.12.0.ppc64.xml   |  1 +
 tests/qemucapabilitiesdata/caps_2.12.0.s390x.xml   |  1 +
 tests/qemucapabilitiesdata/caps_2.12.0.x86_64.xml  |  1 +
 tests/qemucapabilitiesdata/caps_2.7.0.s390x.xml    |  1 +
 tests/qemucapabilitiesdata/caps_2.7.0.x86_64.xml   |  1 +
 tests/qemucapabilitiesdata/caps_2.8.0.s390x.xml    |  1 +
 tests/qemucapabilitiesdata/caps_2.8.0.x86_64.xml   |  1 +
 tests/qemucapabilitiesdata/caps_2.9.0.ppc64.xml    |  1 +
 tests/qemucapabilitiesdata/caps_2.9.0.s390x.xml    |  1 +
 tests/qemucapabilitiesdata/caps_2.9.0.x86_64.xml   |  1 +
 .../disk-drive-write-cache.x86_64-2.6.0.args       | 43 +++++++++++
 .../disk-drive-write-cache.x86_64-2.7.0.args       | 45 ++++++++++++
 .../disk-drive-write-cache.x86_64-latest.args      | 47 ++++++++++++
 tests/qemuxml2argvdata/disk-drive-write-cache.xml  | 45 ++++++++++++
 tests/qemuxml2argvtest.c                           | 83 +++++++++++++++++++++-
 tests/testutilsqemu.c                              | 63 ++++++++++++++++
 tests/testutilsqemu.h                              |  5 ++
 28 files changed, 458 insertions(+), 3 deletions(-)
 create mode 100644 tests/qemuxml2argvdata/disk-drive-write-cache.x86_64-2.6.0.args
 create mode 100644 tests/qemuxml2argvdata/disk-drive-write-cache.x86_64-2.7.0.args
 create mode 100644 tests/qemuxml2argvdata/disk-drive-write-cache.x86_64-latest.args
 create mode 100644 tests/qemuxml2argvdata/disk-drive-write-cache.xml

-- 
2.16.2

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list