search for: 49e173f

Displaying 4 results from an estimated 4 matches for "49e173f".

2016 Nov 21
2
Re: [PATCH v2 5/5] v2v: update tests to match changes in OVA import
...; v2v/test-v2v-i-ova-tar.ovf | 138 ++++++++++++++++++++++++++++++++ The ovf and expected files are basically copies of the -formats versions -- would it be possible to reuse them? > diff --git a/test-data/utils.sh b/test-data/utils.sh > new file mode 100755 > index 0000000..49e173f > --- /dev/null > +++ b/test-data/utils.sh > @@ -0,0 +1,21 @@ > +#!/bin/bash - > + > +# Returns 0 if QEMU version is greater or equal to the arguments > +qemu_version() { This name would suggest it prints the version of qemu, while it really checks against a wanted version --...
2016 Nov 23
0
Re: [PATCH v2 5/5] v2v: update tests to match changes in OVA import
...-- would it be possible to reuse them? Wouldn't that be confusing? Maybe I could rename it to test-v2v-i-ova.ovf and test-v2v-i-ova.expected and then use it in both tests. > > diff --git a/test-data/utils.sh b/test-data/utils.sh > > new file mode 100755 > > index 0000000..49e173f > > --- /dev/null > > +++ b/test-data/utils.sh > > @@ -0,0 +1,21 @@ > > +#!/bin/bash - > > + > > +# Returns 0 if QEMU version is greater or equal to the arguments > > +qemu_version() { > > This name would suggest it prints the version of qemu, whil...
2016 Nov 12
0
[PATCH v2 5/5] v2v: update tests to match changes in OVA import
...cted create mode 100644 v2v/test-v2v-i-ova-tar.expected2 create mode 100644 v2v/test-v2v-i-ova-tar.ovf create mode 100755 v2v/test-v2v-i-ova-tar.sh create mode 100644 v2v/test-v2v-i-ova-two-disks.expected2 diff --git a/test-data/utils.sh b/test-data/utils.sh new file mode 100755 index 0000000..49e173f --- /dev/null +++ b/test-data/utils.sh @@ -0,0 +1,21 @@ +#!/bin/bash - + +# Returns 0 if QEMU version is greater or equal to the arguments +qemu_version() { + if [ $# -ne 2 ] ; then + echo "Usage: $0 <major_version> <minor_version>" >&2 + return 3 +...
2016 Nov 12
9
[PATCH v2 0/5] Import directly from OVA tar archive if possible
This series is related to the problem of inefficient import of OVA files. The needed enhancements of QEMU were merged into the codebase and should be available in QEMU 2.8. From there we can use 'size' and 'offset' options in raw driver to tell QEMU to use only subset of a file as an image. The patch set is more or less complete. The only outstanding issue is the missing detection