search for: qemubinary

Displaying 14 results from an estimated 14 matches for "qemubinary".

Did you mean: qemu_binary
2012 Dec 07
1
[PATCH v2] tests: Fix qemu-wrapper.sh generation
--- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 2eebefa..560ebda 100644 --- a/Makefile.am +++ b/Makefile.am @@ -352,11 +352,11 @@ check-with-upstream-qemu: check-with-upstream-qemu-1: $(top_builddir)/qemu-wrapper.sh $(QEMUBINARY) --version - $(MAKE) LIBGUESTFS_QEMU=$(top_builddir)/qemu-wrapper.sh check + $(MAKE) LIBGUESTFS_QEMU=$(abs_builddir)/qemu-wrapper.sh check $(top_builddir)/qemu-wrapper.sh: Makefile rm -f $@ $@-t - echo exec "$(QEMUBINARY)" -L "$(QEMUDIR)/pc-bios" "$$@" > $@-t +...
2013 Jan 30
1
[PATCH] tests: Handle changing QEMUDIR
...lar test with --version that will actually report an error to the user. --- Makefile.am | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 42052c0..6e5e30a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -357,9 +357,8 @@ QEMUDIR = $(HOME)/d/qemu QEMUBINARY = $(QEMUDIR)/x86_64-softmmu/qemu-system-x86_64 check-with-upstream-qemu: - @if $(QEMUBINARY) --help >/dev/null 2>&1; then \ - $(MAKE) check-with-upstream-qemu-1 || exit $$?; \ - fi + rm -f $(top_builddir)/qemu-wrapper.sh + $(MAKE) check-with-upstream-qemu-1 || exit $$? check-with-...
2012 Dec 06
0
[PATCH] tests: Fix qemu-wrapper.sh generation
...d, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 2eebefa..4f88311 100644 --- a/Makefile.am +++ b/Makefile.am @@ -356,7 +356,7 @@ check-with-upstream-qemu-1: $(top_builddir)/qemu-wrapper.sh $(top_builddir)/qemu-wrapper.sh: Makefile rm -f $@ $@-t - echo exec "$(QEMUBINARY)" -L "$(QEMUDIR)/pc-bios" "$$@" > $@-t + echo -e "#!/bin/sh\nexec" "$(QEMUBINARY)" -L "$(QEMUDIR)/pc-bios" \"\$$@\" > $@-t chmod +x,-w $@-t mv $@-t $@ -- 1.8.0
2014 Oct 03
0
[PATCH v3] tests: Introduce test harness for running tests.
...nary + [default %s] + --upstream-libvirt Run tests using upstream libvirt + --with-upstream-libvirt LIBVIRTDIR + Select libvirt directory + [default %s] + --upstream-qemu Run tests using upstream qemu + --with-upstream-qemu QEMUBINARY + Select qemu binary + [default %s] + +Options used internally: + + --make-phony-guests-only + Generate the phony guests used for testing + +Full list of options in alphabetical order:" + !uml_binary !libvirtdir !qemu_binar...
2014 Oct 05
0
[PATCH v5 1/7] tests: Introduce test harness for running tests.
...nary + [default %s] + --upstream-libvirt Run tests using upstream libvirt + --with-upstream-libvirt LIBVIRTDIR + Select libvirt directory + [default %s] + --upstream-qemu Run tests using upstream qemu + --with-upstream-qemu QEMUBINARY + Select qemu binary + [default %s] + +Options used internally: + + --make-phony-guests-only + Generate the phony guests used for testing + +Full list of options in alphabetical order:" + !uml_binary !libvirtdir !qemu_binar...
2015 Aug 06
0
[PATCH v4 01/17] tests: Introduce test harness for running tests.
...t;]. + +=item B<--upstream-libvirt> + +Run tests using upstream libvirt. + +=item B<--with-upstream-libvirt LIBVIRTDIR> + +Select libvirt directory [default: F<$HOME/d/libvirt>]. + +=item B<--upstream-qemu> + +Run tests using upstream qemu. + +=item B<--with-upstream-qemu QEMUBINARY> + +Select qemu binary +[default: F<$HOME/d/qemu/x86_64-softmmu/qemu-system-x86_64>]. + +=back + +=head2 Options used internally + +=over 4 + +=item B<--make-phony-guests-only> + +Generate the phony guests used for testing. + +=back + +=head2 Other options + +=over 4 + +=item B<--...
2014 Oct 04
4
[PATCH v4 0/4] tests: Introduce test harness for running tests.
This converts more of the tests (basically everything under tests/) to use the test harness, revealing some problems which have subsequently been fixed. Rich.
2014 Oct 05
12
[PATCH v5 0/7] tests: Introduce test harness for running tests.
Since v4: - More tests have been converted. - Testing local guests fixed. - Drop no-exec-stack test.
2014 Oct 23
10
[PATCH v6 00/10] tests: Introduce test harness for running tests.
For v6: This is mainly just a rebase, but I have also added tests in the ocaml/ language bindings directory, and for all the OCaml-written virt tools. Rich.
2014 Oct 24
10
[PATCH v7 00/10] tests: Introduce test harness for running tests.
v7: The only changes since v6 are those suggested by Pino in the review of v5.
2015 Jul 28
10
[PATCH 00/10] tests: Introduce test harness for running tests.
I should probably start by saying this patch series isn't ready for review yet. This patch series adds a test harness to libguestfs. It allows us to run the tests outside the ordinary 'make check' path in the build tree. In particular, you can use this to run tests when libguestfs has been installed. 'make check' and the other 'make check-*' rules still work. The
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.
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.