summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--capitests/Makefile.am4
-rw-r--r--capitests/test-debug-to-file.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/capitests/Makefile.am b/capitests/Makefile.am
index 89d29e0b..487a33f9 100644
--- a/capitests/Makefile.am
+++ b/capitests/Makefile.am
@@ -117,9 +117,11 @@ test_private_data_LDADD = \
test_debug_to_file_SOURCES = test-debug-to-file.c
test_debug_to_file_CFLAGS = \
-I$(top_srcdir)/src -I$(top_builddir)/src \
+ -I$(top_srcdir)/gnulib/lib \
$(WARN_CFLAGS) $(WERROR_CFLAGS)
test_debug_to_file_LDADD = \
- $(top_builddir)/src/libguestfs.la
+ $(top_builddir)/src/libguestfs.la \
+ ../gnulib/lib/libgnu.la
#if HAVE_LIBVIRT
#test_add_libvirt_dom_SOURCES = test-add-libvirt-dom.c
diff --git a/capitests/test-debug-to-file.c b/capitests/test-debug-to-file.c
index 6d1b619e..5eb56104 100644
--- a/capitests/test-debug-to-file.c
+++ b/capitests/test-debug-to-file.c
@@ -27,6 +27,8 @@
#include <string.h>
#include <unistd.h>
+#include "ignore-value.h"
+
#include "guestfs.h"
static void
@@ -40,7 +42,7 @@ debug_to_file (guestfs_h *g,
{
FILE *fp = opaque;
- fwrite (buf, 1, buf_len, fp);
+ ignore_value (fwrite (buf, 1, buf_len, fp));
}
int