search for: 46b0563

Displaying 2 results from an estimated 2 matches for "46b0563".

2018 Nov 14
0
[PATCH nbdkit v3 4/4] tests: Valgrind is only enabled when NBDKIT_VALGRIND = 1, not any other values.
..."1" ] && vg="-valgrind" + case "$1$vg" in vddk | vddk-valgrind) # VDDK won't run without special environment variables # being set, so ignore it. diff --git a/tests/test-lang-plugins.c b/tests/test-lang-plugins.c index 46b0563..f569540 100644 --- a/tests/test-lang-plugins.c +++ b/tests/test-lang-plugins.c @@ -49,6 +49,7 @@ main (int argc, char *argv[]) { guestfs_h *g; int r; + const char *s; char *data; /* These languages currently fail completely when run under @@ -56,7 +57,8 @@ main (int argc, char *arg...
2018 Nov 14
5
[PATCH nbdkit v3 0/4] build: Replace ./nbdkit with a C program.
v1 was here: https://www.redhat.com/archives/libguestfs/2018-November/msg00147.html v2 was here: https://www.redhat.com/archives/libguestfs/2018-November/msg00152.html v3: - Use optarg != NULL as a sentinel for has_arg. - Moved some variable decls into the inner loop. - Make nbdkit wrapper depend on config.status, so if srcdir or builddir changes then we rebuild the wrapper. It