Displaying 4 results from an estimated 4 matches for "skip_test_big_heap".
2018 Mar 21
2
[PATCH] tests: regressions: make test-big-heap use a temporary empty file
...nclude <unistd.h>
#include "guestfs.h"
#include "guestfs-utils.h"
@@ -41,6 +42,8 @@ main (int argc, char *argv[])
const char *s;
guestfs_h *g;
char *mem, *fmt;
+ char tmpfile[32];
+ int tmpfilefd;
/* Allow the test to be skipped. */
s = getenv ("SKIP_TEST_BIG_HEAP");
@@ -50,6 +53,8 @@ main (int argc, char *argv[])
exit (77);
}
+ snprintf (tmpfile, sizeof tmpfile, "test-big-heap.XXXXXX");
+
/* Make sure we're using > 1GB in the main process. This test won't
* work on 32 bit platforms, because we can't allocate...
2018 Mar 21
0
Re: [PATCH] tests: regressions: make test-big-heap use a temporary empty file
...h"
> #include "guestfs-utils.h"
> @@ -41,6 +42,8 @@ main (int argc, char *argv[])
> const char *s;
> guestfs_h *g;
> char *mem, *fmt;
> + char tmpfile[32];
> + int tmpfilefd;
>
> /* Allow the test to be skipped. */
> s = getenv ("SKIP_TEST_BIG_HEAP");
> @@ -50,6 +53,8 @@ main (int argc, char *argv[])
> exit (77);
> }
>
> + snprintf (tmpfile, sizeof tmpfile, "test-big-heap.XXXXXX");
> +
> /* Make sure we're using > 1GB in the main process. This test won't
> * work on 32 bit p...
2018 Mar 28
0
Re: [PATCH FOR DISCUSSION ONLY v2] v2v: Add -o kubevirt output mode.
...rallel 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 file descriptor
# https://bugzilla.redhat.com/1265196
export SKIP_TEST_DISK_CREATE_SH=1
export SKIP_TEST_V2V_OA_OPTION_SH=1
# Skip tests which fail because discard does not work on NFS.
export SKIP_TEST_BLKDISCARD_PL=1
ex...
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.
>
> --
>