X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=capitests%2FMakefile.am;h=542c4fb907a9637e944f29a4351d20d5a6665222;hp=1dded1e08058a3260034aeb931144e23fb357c56;hb=6d75ce8e6ca1f3f0a946ee4e214f6d2bff07adc4;hpb=9cd1810b5e5b0a09f1a6eaf64fa14b924fbb0eae diff --git a/capitests/Makefile.am b/capitests/Makefile.am index 1dded1e..542c4fb 100644 --- a/capitests/Makefile.am +++ b/capitests/Makefile.am @@ -26,6 +26,7 @@ EXTRA_DIST = $(BUILT_SOURCES) check_PROGRAMS = \ tests \ test-command \ + test-just-header \ test-create-handle \ test-config \ test-add-drive-opts \ @@ -33,17 +34,27 @@ check_PROGRAMS = \ TESTS = \ tests \ + test-just-header \ test-create-handle \ test-config \ test-add-drive-opts \ test-last-errno + +# The API behind this test is not baked yet. +#if HAVE_LIBVIRT +#check_PROGRAMS += test-add-libvirt-dom +#TESTS += test-add-libvirt-dom +#endif +EXTRA_DIST += test-add-libvirt-dom.c + 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) \ - SKIP_TEST_CHECKSUM_8=$(shell if test `find ../initramfs -name squashfs.ko | wc -l` -eq 0; then echo 1; fi) \ LIBGUESTFS_PATH=$(top_builddir)/appliance \ $(VG) +#SKIP_TEST_CHECKSUM_8=$(shell if test `find ../initramfs -name squashfs.ko | wc -l` -eq 0; then echo 1; fi) + tests_SOURCES = tests.c tests_CFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src \ $(WARN_CFLAGS) $(WERROR_CFLAGS) @@ -57,6 +68,13 @@ test_command_LDFLAGS = -all-static # Hand-written C API tests. +test_just_header_SOURCES = test-just-header.c +test_just_header_CFLAGS = \ + -I$(top_srcdir)/src -I$(top_builddir)/src \ + $(WARN_CFLAGS) $(WERROR_CFLAGS) +test_just_header_LDADD = \ + $(top_builddir)/src/libguestfs.la + test_create_handle_SOURCES = test-create-handle.c test_create_handle_CFLAGS = \ -I$(top_srcdir)/src -I$(top_builddir)/src \ @@ -85,6 +103,17 @@ test_last_errno_CFLAGS = \ test_last_errno_LDADD = \ $(top_builddir)/src/libguestfs.la +#if HAVE_LIBVIRT +#test_add_libvirt_dom_SOURCES = test-add-libvirt-dom.c +#test_add_libvirt_dom_CFLAGS = \ +# -I$(top_srcdir)/src -I$(top_builddir)/src -I$(top_srcdir)/gnulib/lib \ +# $(LIBVIRT_CFLAGS) \ +# $(WARN_CFLAGS) $(WERROR_CFLAGS) +#test_add_libvirt_dom_LDADD = \ +# $(top_builddir)/src/libguestfs.la $(LIBVIRT_LIBS) \ +# $(LTLIBTHREAD) ../gnulib/lib/libgnu.la +#endif + # Run the tests under valgrind. valgrind: