search for: 62f5d14

Displaying 9 results from an estimated 9 matches for "62f5d14".

Did you mean: 625,14
2014 Oct 22
2
[PATCH] tests: rename $SRCDIR to $srcdir
...++--- tests/guests/guest-aux/make-fedora-img.pl | 10 +++++----- tests/guests/guest-aux/make-ubuntu-img.sh | 4 ++-- tests/guests/guest-aux/make-windows-img.sh | 6 +++--- 5 files changed, 19 insertions(+), 19 deletions(-) diff --git a/tests/guests/Makefile.am b/tests/guests/Makefile.am index 62f5d14..88e0f57 100644 --- a/tests/guests/Makefile.am +++ b/tests/guests/Makefile.am @@ -75,7 +75,7 @@ fedora.img: guest-aux/make-fedora-img.pl \ guest-aux/fedora-journal.tar.xz \ guest-aux/fedora-name.db \ guest-aux/fedora-packages.db - SRCDIR=$(srcdir) LAYOUT=partitions $(top_builddir)/run --te...
2014 Oct 22
0
Re: [PATCH] tests: rename $SRCDIR to $srcdir
...make-fedora-img.pl | 10 +++++----- > tests/guests/guest-aux/make-ubuntu-img.sh | 4 ++-- > tests/guests/guest-aux/make-windows-img.sh | 6 +++--- > 5 files changed, 19 insertions(+), 19 deletions(-) > > diff --git a/tests/guests/Makefile.am b/tests/guests/Makefile.am > index 62f5d14..88e0f57 100644 > --- a/tests/guests/Makefile.am > +++ b/tests/guests/Makefile.am > @@ -75,7 +75,7 @@ fedora.img: guest-aux/make-fedora-img.pl \ > guest-aux/fedora-journal.tar.xz \ > guest-aux/fedora-name.db \ > guest-aux/fedora-packages.db > - SRCDIR=$(srcdir) LAYOUT=...
2014 Sep 20
3
[PATCH v2 0/3] tests: Introduce test harness for running tests.
This has got to the stage where it actually works, both for running the tests in-tree and installed. The 'test-harness' script has become rather over-complex in the process however. Rich.
2014 Oct 23
17
[PATCH 00/16] Small bits of non-Linux porting
Hi, from time to time, there have been requests (or attempts, like the mingw port posted on the list some months ago) to make libguestfs work on OSes different than Linux. Of course this would imply using a fixed appliance, since it is currently heavily dependent on Linux. The attached series provides some easy changes in this direction, resolving some of the easy issues found in porting to
2014 Oct 03
0
[PATCH v3] tests: Introduce test harness for running tests.
...c) $(images_files_build) +localtestsdir = $(alltestsdir)/tests/data + +localtests_DATA = $(images_files) test.iso + +CLEANFILES = $(images_files_build) test.iso + test.iso: $(images_files) rm -f $@ $@-t mkdir -p directory diff --git a/tests/guests/Makefile.am b/tests/guests/Makefile.am index 62f5d14..7cfdbd3 100644 --- a/tests/guests/Makefile.am +++ b/tests/guests/Makefile.am @@ -55,62 +55,34 @@ disk_images = \ # time and we need the tools we have built in order to make it. check_DATA = $(disk_images) guests-all-good.xml -CLEANFILES = $(check_DATA) \ - guests-all-good.xml \ - stamp-fedora-...
2014 Oct 05
0
[PATCH v5 1/7] tests: Introduce test harness for running tests.
...c) $(images_files_build) +localtestsdir = $(alltestsdir)/tests/data + +localtests_DATA = $(images_files) test.iso + +CLEANFILES = $(images_files_build) test.iso + test.iso: $(images_files) rm -f $@ $@-t mkdir -p directory diff --git a/tests/guests/Makefile.am b/tests/guests/Makefile.am index 62f5d14..7cfdbd3 100644 --- a/tests/guests/Makefile.am +++ b/tests/guests/Makefile.am @@ -55,62 +55,34 @@ disk_images = \ # time and we need the tools we have built in order to make it. check_DATA = $(disk_images) guests-all-good.xml -CLEANFILES = $(check_DATA) \ - guests-all-good.xml \ - stamp-fedora-...
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.