X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=capitests%2FMakefile.am;h=0d18eaf5617e85c1f0952ff4816b26773b39a6b9;hb=59db941bf64eae2eed6a8e6451e04aa0cbec8294;hp=1374d9bf7b59221b948ca020128041b05e987784;hpb=b535363e7e7a000cca3651790f911b2d0605968f;p=libguestfs.git diff --git a/capitests/Makefile.am b/capitests/Makefile.am index 1374d9b..0d18eaf 100644 --- a/capitests/Makefile.am +++ b/capitests/Makefile.am @@ -26,13 +26,27 @@ EXTRA_DIST = $(BUILT_SOURCES) check_PROGRAMS = \ tests \ test-command \ + test-just-header \ test-create-handle \ - test-config + test-config \ + test-add-drive-opts \ + test-last-errno TESTS = \ tests \ + test-just-header \ test-create-handle \ - test-config + 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) \ @@ -53,6 +67,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 \ @@ -67,6 +88,31 @@ test_config_CFLAGS = \ test_config_LDADD = \ $(top_builddir)/src/libguestfs.la +test_add_drive_opts_SOURCES = test-add-drive-opts.c +test_add_drive_opts_CFLAGS = \ + -I$(top_srcdir)/src -I$(top_builddir)/src \ + $(WARN_CFLAGS) $(WERROR_CFLAGS) +test_add_drive_opts_LDADD = \ + $(top_builddir)/src/libguestfs.la + +test_last_errno_SOURCES = test-last-errno.c +test_last_errno_CFLAGS = \ + -I$(top_srcdir)/src -I$(top_builddir)/src \ + $(WARN_CFLAGS) $(WERROR_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: