X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=capitests%2FMakefile.am;h=9802a06ad658d0a568742a7b6133f3a66e6dfba8;hb=040b6cb061e510992c2b8f1ab97289f55c363ba2;hp=89d29e0bdf8e9bd9ca5437a4fbbe49503c9fa75a;hpb=4e0cf4dbf8a8a96288f70114fdc3939da0aa7ad1;p=libguestfs.git diff --git a/capitests/Makefile.am b/capitests/Makefile.am index 89d29e0..9802a06 100644 --- a/capitests/Makefile.am +++ b/capitests/Makefile.am @@ -32,6 +32,7 @@ check_PROGRAMS = \ test-add-drive-opts \ test-last-errno \ test-private-data \ + test-user-cancel \ test-debug-to-file TESTS = \ @@ -42,6 +43,7 @@ TESTS = \ test-add-drive-opts \ test-last-errno \ test-private-data \ + test-user-cancel \ test-debug-to-file # The API behind this test is not baked yet. @@ -55,6 +57,7 @@ TESTS_ENVIRONMENT = \ SKIP_TEST_COMMAND=$(shell ldd test-command | grep -sq 'not a dynamic executable' || echo 1) \ SKIP_TEST_COMMAND_LINES=$(shell ldd test-command | grep -sq 'not a dynamic executable' || echo 1) \ LIBGUESTFS_PATH=$(top_builddir)/appliance \ + TMPDIR=$(top_builddir) \ $(VG) #SKIP_TEST_CHECKSUM_8=$(shell if test `find ../initramfs -name squashfs.ko | wc -l` -eq 0; then echo 1; fi) @@ -114,12 +117,22 @@ test_private_data_CFLAGS = \ test_private_data_LDADD = \ $(top_builddir)/src/libguestfs.la +test_user_cancel_SOURCES = test-user-cancel.c +test_user_cancel_CFLAGS = \ + -pthread \ + -I$(top_srcdir)/src -I$(top_builddir)/src \ + $(WARN_CFLAGS) $(WERROR_CFLAGS) +test_user_cancel_LDADD = \ + $(top_builddir)/src/libguestfs.la + 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