search for: e85c249

Displaying 2 results from an estimated 2 matches for "e85c249".

Did you mean: 5854249
2014 Jan 27
0
[PATCH 2/2] tests/disks: skip test-qemu-drive-libvirt.sh if libvirt is < 1.1.3
...elies on the <test:runstate> element in the domain XML, which has been introduced in libvirt 1.1.3. --- tests/disks/test-qemu-drive-libvirt.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/disks/test-qemu-drive-libvirt.sh b/tests/disks/test-qemu-drive-libvirt.sh index e85c249..b355371 100755 --- a/tests/disks/test-qemu-drive-libvirt.sh +++ b/tests/disks/test-qemu-drive-libvirt.sh @@ -26,6 +26,16 @@ if [ -z "$abs_srcdir" ]; then exit 1 fi +if [ ! -s ../libvirt/libvirt-is-version ]; then + echo "$0: test skipped because libvirt-is-version is not...
2014 Jan 27
3
[PATCH 0/2] Skip test-qemu-drive-libvirt.sh if libvirt is < 1.1.3
Hi, test-qemu-drive-libvirt.sh fails to run with libvirt < 1.1.3, because the <test:runstate> attribute (used to keep the domains shut off) has been introduced in that libvirt version. Create a small (uninstalled) C tool which just does this version check, to be used in all the tests (just one, so far) written in shell/scripting language. Pino Toscano (2): tests: add a a simple