search for: fa61966

Displaying 2 results from an estimated 2 matches for "fa61966".

Did you mean: a01966
2018 Nov 14
0
[PATCH nbdkit v3 4/4] tests: Valgrind is only enabled when NBDKIT_VALGRIND = 1, not any other values.
...NBDKIT_VALGRIND"); + if (s && strcmp (s, "1") == 0 && (strcmp (LANG, "python") == 0 || strcmp (LANG, "ruby") == 0 || strcmp (LANG, "tcl") == 0)) { diff --git a/tests/test-ocaml.c b/tests/test-ocaml.c index 4cae8a6..fa61966 100644 --- a/tests/test-ocaml.c +++ b/tests/test-ocaml.c @@ -49,13 +49,15 @@ main (int argc, char *argv[]) { guestfs_h *g; int r; + const char *s; char *data; size_t i, size; /* The OCaml tests fail valgrind, so skip them. We should be able * to get this working with a bit o...
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