search for: 06c6163

Displaying 1 result from an estimated 1 matches for "06c6163".

Did you mean: 0.6163
2018 Apr 05
2
[nbdkit PATCH] tests: Skip guestfs tests on CentOS 6
...+++++ tests/test-oldstyle.c | 5 +++++ tests/test-partition.c | 5 +++++ tests/test-split.c | 5 +++++ tests/test-streaming.c | 5 +++++ tests/test-xz.c | 5 +++++ 16 files changed, 82 insertions(+) diff --git a/tests/test-connect.c b/tests/test-connect.c index 32ba79a..06c6163 100644 --- a/tests/test-connect.c +++ b/tests/test-connect.c @@ -62,6 +62,10 @@ main (int argc, char *argv[]) exit (EXIT_FAILURE); } +#ifndef GUESTFS_ADD_DRIVE_OPTS_PROTOCOL + printf ("libguestfs too old to support nbd disk, skipping\n"); + exit (77); +#else r = guestfs_add_...