summaryrefslogtreecommitdiffstats
path: root/python/Makefile.am
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2009-05-28 20:15:51 +0100
committerRichard W.M. Jones <rjones@redhat.com>2009-05-28 20:15:51 +0100
commitbabc0846cc911b01a58a7385d30ad25889b7175a (patch)
treee8f67f7fc096185e0febbad35396ba3972eaa432 /python/Makefile.am
parentc41fe04a652437c920acb0e820762c53bf44a139 (diff)
downloadlibguestfs-babc0846cc911b01a58a7385d30ad25889b7175a.tar.gz
libguestfs-babc0846cc911b01a58a7385d30ad25889b7175a.tar.xz
libguestfs-babc0846cc911b01a58a7385d30ad25889b7175a.zip
Add tests for bindings parameters, fix several broken bindings.
Diffstat (limited to 'python/Makefile.am')
-rw-r--r--python/Makefile.am9
1 files changed, 6 insertions, 3 deletions
diff --git a/python/Makefile.am b/python/Makefile.am
index 4c72bbd4..dcd06253 100644
--- a/python/Makefile.am
+++ b/python/Makefile.am
@@ -18,6 +18,9 @@
EXTRA_DIST = \
guestfs.py \
guestfs-py.c \
+ bindtests.py \
+ run-bindtests \
+ run-python-tests \
t/*.py
if HAVE_PYTHON
@@ -34,8 +37,8 @@ libguestfsmod_la_LIBADD = $(top_builddir)/src/libguestfs.la
TESTS_ENVIRONMENT = \
LIBGUESTFS_PATH=$(top_builddir)/appliance \
- PYTHONPATH=$(top_builddir)/python:$(top_builddir)/python/.libs \
- $(PYTHON)
-TESTS = t/005-import.py t/010-launch.py t/050-lvcreate.py
+ PYTHONPATH=$(top_builddir)/python:$(top_builddir)/python/.libs
+
+TESTS = run-bindtests run-python-tests
endif