search for: 06da002

Displaying 4 results from an estimated 4 matches for "06da002".

2015 Jul 27
4
[PATCH] v2v: add --in-place mode
...type='qcow2'/> + <source file='@abs_builddir@/windows-overlay.qcow2'/> + <target dev='vda' bus='virtio'/> + </disk> + </devices> + </domain> + </node> diff --git a/v2v/Makefile.am b/v2v/Makefile.am index 06da002..dae063c 100644 --- a/v2v/Makefile.am +++ b/v2v/Makefile.am @@ -232,6 +232,7 @@ TESTS += \ test-v2v-cdrom.sh \ test-v2v-i-ova.sh \ test-v2v-i-disk.sh \ + test-v2v-in-place.sh \ test-v2v-machine-readable.sh \ test-v2v-networks-and-bridges.sh \ test-v2v-no-copy.sh \ diff --git a/v2v/cmdli...
2015 Jul 28
0
Re: [PATCH] v2v: add --in-place mode
...s only used for a single test in the v2v/ subdirectory. You can change the new test in the v2v/ subdirectory so it creates (or is supplied with) the XML. There are various tests which work like that already - eg: v2v/test-v2v-cdrom.* > diff --git a/v2v/Makefile.am b/v2v/Makefile.am > index 06da002..dae063c 100644 > --- a/v2v/Makefile.am > +++ b/v2v/Makefile.am > @@ -232,6 +232,7 @@ TESTS += \ > test-v2v-cdrom.sh \ > test-v2v-i-ova.sh \ > test-v2v-i-disk.sh \ > + test-v2v-in-place.sh \ > test-v2v-machine-readable.sh \ > test-v2v-networks-and-bridges.sh \ &...
2015 Jul 31
14
[PATCH v2 00/14] tests: Introduce test harness for running tests.
This is a more complete patch to add the test harness. The only parts missing now are the language bindings (except OCaml). The language bindings need a bit more thought. At the moment most language binding tests are done through some sort of shell script like perl/run-perl-tests which either runs each test itself or uses some language-specific machinary to run each test. The problem with that
2015 Aug 04
16
[PATCH v3 01/16] tests: Introduce test harness for running tests.
Since v2: - Add perl tests. - Reworked and fixed the tests for virt-builder. - Some further minor bug fixes.