search for: testova

Displaying 11 results from an estimated 11 matches for "testova".

2016 May 19
2
[PATCH] v2v: handle subfolders in ova files
.../fake-virt-tools" +export VIRTIO_WIN="$srcdir/../test-data/fake-virtio-win" + +. $srcdir/../test-data/guestfs-hashsums.sh + +d=test-v2v-i-ova-subfolders.d +rm -rf $d +mkdir -p $d/subfolder + +vmdk=test-ova.vmdk +ovf=test-v2v-i-ova.ovf +mf=test-ova.mf +ova=test-ova-subfolders.ova +raw=TestOva-sda + +qemu-img convert $f -O vmdk $d/subfolder/$vmdk +cp $ovf $d/subfolder/$ovf +sha1=`do_sha1 $d/subfolder/$ovf` +echo "SHA1($ovf)= $sha1" > $d/subfolder/$mf +sha1=`do_sha1 $d/subfolder/$vmdk` +echo "SHA1($vmdk)= $sha1" >> $d/subfolder/$mf + +pushd . +cd $d +tar -cf $...
2019 Dec 17
6
[v2v PATCH 0/3] Various dist/build fixes
Fix one dist issue, and almost all the builddir!=srcdir issues. (For the record, only 3 tests still fail in that setup.) Pino Toscano (3): libvirt-ocaml: add libvirt_c.h as source tests: fix path to sources of fake-virtio-win.iso tests: fix srcdir references bundled/libvirt-ocaml/Makefile.am | 1 + test-data/fake-virtio-win/Makefile.am | 2 +- tests/rhbz1232192.sh
2016 May 19
0
Re: [PATCH] v2v: handle subfolders in ova files
...est-data/fake-virtio-win" > + > +. $srcdir/../test-data/guestfs-hashsums.sh > + > +d=test-v2v-i-ova-subfolders.d > +rm -rf $d > +mkdir -p $d/subfolder > + > +vmdk=test-ova.vmdk > +ovf=test-v2v-i-ova.ovf > +mf=test-ova.mf > +ova=test-ova-subfolders.ova > +raw=TestOva-sda While I see this is mostly a copy from test-v2v-i-ova.sh, please change the name of temporary and output files, otherwise there are conflicts when this and test-v2v-i-ova.sh run in parallel. This would be the fifth test-v2v-i-ova*.sh test, and they all look quite close. I'll take a look...
2020 May 19
1
[PATCH virt-v2v v2] v2v: -o libvirt: Remove cache=none.
...@@ <on_crash>restart</on_crash> <devices> <disk type='file' device='disk'> - <driver name='qemu' type='raw' cache='none'/> + <driver name='qemu' type='raw'/> <source file='TestOva-sda'/> <target dev='vda' bus='virtio'/> </disk> diff --git a/v2v/create_libvirt_xml.ml b/v2v/create_libvirt_xml.ml index 05553c4f7d..5a1fba0fd6 100644 --- a/v2v/create_libvirt_xml.ml +++ b/v2v/create_libvirt_xml.ml @@ -336,7 +336,6 @@ let create_libvir...
2018 Nov 23
1
[PATCH v2] v2v: Add support for libosinfo metadata
...t file = dir // name ^ ".xml" in diff --git a/v2v/test-v2v-i-ova.xml b/v2v/test-v2v-i-ova.xml index b277193a87ed..7c19828316c8 100644 --- a/v2v/test-v2v-i-ova.xml +++ b/v2v/test-v2v-i-ova.xml @@ -2,6 +2,11 @@ <domain type='kvm'> <!-- generated by --> <name>TestOva</name> + <metadata> + <libosinfo:libosinfo xmlns:libosinfo='http://libosinfo.org/xmlns/libvirt/domain/1.0'> + <libosinfo:os id='http://microsoft.com/win/7'/> + </libosinfo:libosinfo> + </metadata> <memory unit='KiB'>2...
2016 Mar 18
9
[PATCH 0/7] Small portability changes
Assorted collection of small improvements in making libguestfs build on non-Linux OSes; most of the changes impact tests though. Thanks, Pino Toscano (7): build: check the path of fuser, and use it in FUSE code tests: move guestfs-md5.sh to test-data v2v: tests: isolate SHA1 calculation in an own shared function v2v: tests: use guestfs-hashsums.sh for MD5 php: pass $(MAKE) to
2017 Feb 19
3
[PATCH [WIP] 0/3] tests: Define common test functions.
There's a lot of common code in the tests, eg: if [ "$(guestfish get-backend)" = "uml" ]; then echo "$0: test skipped because UML backend does not support network" exit 77 fi These commits (work in progress) create a common set of test functions for skipping tests etc. Rich.
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.
2015 Aug 06
20
[PATCH v4 00/17] tests: Introduce test harness for running tests.
Since v3: - A large number of fixes, especially for running the tests on installed libguestfs. - Fixed EXTRA_DIST rules throughout. - Extra patch 17/17 which is a tidy-up of the generated XML listing guests. Rich.
2017 Feb 20
3
[PATCH 0/3] tests: Define common test functions.
Previously I posted a work-in-progress preview of this patch series: https://www.redhat.com/archives/libguestfs/2017-February/msg00224.html This is the finished version that updates all of the shell-script based tests. It passes 'make check', 'make check-direct' and 'make check-slow'. Rich.