search for: skip_test_parallel_mount_local

Displaying 17 results from an estimated 17 matches for "skip_test_parallel_mount_local".

2013 Nov 07
2
Re: Kernel panic with virt-builder etc.
...------------------------------------------------------- * Create a file called 'localenv' containing: ---------------------------------------------------------------------- # NB: -*- Makefile -*- AND a shell script. # Parallel test runs out of resources starting qemu, unclear why. export SKIP_TEST_PARALLEL_MOUNT_LOCAL=1 # Fails under valgrind because cpio subprocess has a memory leak. export SKIP_TEST_FILE_ARCHITECTURE_11=1 ---------------------------------------------------------------------- * Ensure Ubuntu 13.10 is fully up to date: sudo apt-get update sudo apt-get dist-upgrade sudo apt-get builddep...
2013 Nov 07
0
Re: Kernel panic with virt-builder etc.
...--------------- > > * Create a file called 'localenv' containing: > > ---------------------------------------------------------------------- > # NB: -*- Makefile -*- AND a shell script. > > # Parallel test runs out of resources starting qemu, unclear why. > export SKIP_TEST_PARALLEL_MOUNT_LOCAL=1 > > # Fails under valgrind because cpio subprocess has a memory leak. > export SKIP_TEST_FILE_ARCHITECTURE_11=1 > ---------------------------------------------------------------------- > > * Ensure Ubuntu 13.10 is fully up to date: > > sudo apt-get update > sudo...
2018 Mar 28
0
Re: [PATCH FOR DISCUSSION ONLY v2] v2v: Add -o kubevirt output mode.
...ntent-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=localenv # NB: -*- Makefile -*- AND a shell script. #export SUPERMIN=/home/rjones/d/supermin/src/supermin export SUPERMIN=/usr/bin/supermin5 # Parallel test runs out of resources starting qemu, unclear why. export SKIP_TEST_PARALLEL_MOUNT_LOCAL=1 # Skip vfs-minimum-size test which requires btrfs-progs >= 4.2 export SKIP_TEST_VFS_MINIMUM_SIZE_2=1 # This test fails if the available memory is ~ 4 GB, as it is # on the test machine. export SKIP_TEST_BIG_HEAP=1 # qemu-img: ./disk6.img: Could not preallocate data for the new file: Bad fil...
2018 Aug 14
5
[PATCH 1/4] build: Use LT_INIT in configure.ac.
Avoids the warning: libtoolize: Remember to add 'LT_INIT' to configure.ac. This is the new name for AC_PROG_LIBTOOL, so I removed that. However to use this macro we must enable AC_USE_SYSTEM_EXTENSIONS. (AC_GNU_SOURCE was removed back in 2011). --- configure.ac | 5 +++++ m4/guestfs-progs.m4 | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/configure.ac
2018 Mar 28
2
Re: [PATCH FOR DISCUSSION ONLY v2] v2v: Add -o kubevirt output mode.
On Wed, Mar 28, 2018 at 1:01 PM, Richard W.M. Jones <rjones@redhat.com> wrote: > On Wed, Mar 28, 2018 at 12:33:56PM +0200, Piotr Kliczewski wrote: > > configure: error: Package requirements (jansson >= 2.7) were not met: > > You need to install jansson-devel. > OK, In addition I had to install ocaml-hivex-devel (failed during make) > > Rich. > > -- >
2014 Dec 17
3
[PATCH 0/3] Allow environment variables to have boolean values.
https://bugzilla.redhat.com/show_bug.cgi?id=1175196 Currently if you write something like LIBGUESTFS_DEBUG=0 or LIBGUESTFS_DEBUG=true then it doesn't do what you probably expect. This patch series fixes that. Rich.
2013 Nov 07
2
Kernel panic with virt-builder etc.
Hi there, I am trying to write an article on virt-builder and managed to compile version 1.24.1 of libguestfs on Ubuntu 13.10 (I had mixed success with the git version and 1.25.x). When I am running virt-builder I am getting an error message: virt-builder: error: virt-resize failed Upon further investigation it turns out that there's a kernel panic when booting the freshly created image.
2016 Sep 08
4
[PATCH 0/3] Use gnulib's getprogname
Hi, this series update libguestfs to a recent gnulib version, so that we can use its new getprogname module, and solve altogether one of the porting issues (the need for 'program_name' by the error module of gnulib), and have a single way to get the name of the current program. A number of changes in tools mostly, although mechanical. Thanks, Pino Toscano (3): Update gnulib to latest
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 Feb 14
2
[PATCH 0/2] Change guestfs__*
libguestfs has used double and triple underscores in identifiers. These aren't valid for global names in C++. (http://stackoverflow.com/a/228797) These large but completely mechanical patches change the illegal identifiers to legal ones. 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.