X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=Makefile.am;h=d14cc123334d6748cd37948df0e12f6b7e4ad07d;hp=60343f8c3ad2ee0ec757c0560e0182a629d88519;hb=10df9d88ab4191c4092f4a88c7343ab3f5f31a70;hpb=ffbafadcb8dfebcaba529cb8d7e2da52dd032d8a diff --git a/Makefile.am b/Makefile.am index 60343f8..d14cc12 100644 --- a/Makefile.am +++ b/Makefile.am @@ -13,14 +13,17 @@ # # 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 ACLOCAL_AMFLAGS = -I m4 +# Gnulib - must be built and tested before the library. +SUBDIRS = gnulib/lib gnulib/tests + # Basic source for the library. -SUBDIRS = gnulib/lib images generator src examples po +SUBDIRS += tests/data generator src examples po if ENABLE_DAEMON SUBDIRS += daemon @@ -29,8 +32,21 @@ if ENABLE_APPLIANCE SUBDIRS += appliance endif -# Tests and the test-tool. -SUBDIRS += gnulib/tests capitests caution regressions test-tool +# Tests - order is important. +SUBDIRS += tests/qemu +SUBDIRS += tests/guests +SUBDIRS += tests/c-api +SUBDIRS += tests/protocol +SUBDIRS += tests/lvm +SUBDIRS += tests/luks +SUBDIRS += tests/md +SUBDIRS += tests/regressions + +# Extra tests don't run by default. You have to do 'make extra-tests'. +SUBDIRS += tests/extra + +# libguestfs-test-tool +SUBDIRS += test-tool # Guestfish. SUBDIRS += fish @@ -161,6 +177,7 @@ HTMLFILES = \ html/guestfs-python.3.html \ html/guestfs-recipes.1.html \ html/guestfs-ruby.3.html \ + html/guestfs-testing.1.html \ html/guestfish.1.html \ html/guestmount.1.html \ html/virt-alignment-scan.1.html \ @@ -204,7 +221,7 @@ dist-hook: $(top_srcdir)/update-bugs.sh > BUGS-t mv BUGS-t BUGS cp BUGS $(distdir)/BUGS - git log --pretty="format:%an" | sort -u | \ + git log --pretty="format:%an <%ae>" | sort -u | uniq -w 10 | \ grep -v rjones | \ grep -v "Richard Jones" \ > AUTHORS-t @@ -217,7 +234,7 @@ all-local: find $(DIST_SUBDIRS) \ -name '*.c' -o -name '*.pl' -o -name '*.pm' | \ grep -v '^perl/blib/' | \ - grep -v '^capitests/' | \ + grep -v '^tests/' | \ grep -v '^daemon/lib/' | \ grep -v '^daemon/tests/' | \ grep -v '^examples/' | \ @@ -227,6 +244,7 @@ all-local: grep -v '/rc_protocol.c' | \ grep -v 'appliance/debian/root' | \ grep -v '^po-docs/' | \ + grep -v '^images/' | \ LC_ALL=C sort | \ sed 's,^\./,,' > po/POTFILES.in @@ -248,6 +266,11 @@ CLEANFILES = \ quickcheck: ./run test-tool/libguestfs-test-tool $(QUICKCHECK_TEST_TOOL_ARGS) +# Run extra-tests in tests/extra/ subdirectory. + +extra-tests: + make -C tests/extra $@ + # Make binary distribution. BINTMPDIR = /tmp/libguestfs-bin