X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=capitests%2FMakefile.am;h=cb9188ecd7b2f54a596ea1ab1cfad354d90ed6c4;hp=487a33f9ad84e68fe062c7d59d54fceed1c8367d;hb=c55bad93fbde03a3daa6058913f02098c45e55f5;hpb=eb6119da38ed98f9fe902401614c2d14ed20bb2e diff --git a/capitests/Makefile.am b/capitests/Makefile.am index 487a33f..cb9188e 100644 --- a/capitests/Makefile.am +++ b/capitests/Makefile.am @@ -13,7 +13,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. include $(top_srcdir)/subdir-rules.mk @@ -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,6 +117,14 @@ 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 -lm + test_debug_to_file_SOURCES = test-debug-to-file.c test_debug_to_file_CFLAGS = \ -I$(top_srcdir)/src -I$(top_builddir)/src \