* Makefile.am configure.in python/Makefile.am python/tests/Makefile.am

python/tests/basic.py: added first python test script and
  a 'make tests' target
Daniel
This commit is contained in:
Daniel Veillard
2006-02-14 14:30:42 +00:00
parent a5f9391541
commit f32eee58b0
6 changed files with 77 additions and 1 deletions

View File

@@ -1,5 +1,7 @@
# Makefile for libvirt python library
SUBRIRS= . tests
INCLUDES = \
-I$(PYTHON_INCLUDES) \
-I$(top_srcdir)/include \
@@ -60,3 +62,8 @@ $(libvirtmod_la_OBJECTS): $(GENERATED)
else
all:
endif
dummy:
tests test: all dummy
-@(cd tests && $(MAKE) MAKEFLAGS+=--silent tests)