bindtests: Test optargs in test0

Note that this change disables compiling and running the haskell bindtests. The
haskell bindings do not implement optargs, and adding optargs to test0 causes
that method not to be bound in the haskell bindings. This prevents the haskell
bindtests from compiling. These should be re-enabled when optargs are
implemented.
This commit is contained in:
Matthew Booth
2012-01-19 16:43:20 +00:00
parent e99a6a8483
commit 02ccef7684
5 changed files with 237 additions and 33 deletions

View File

@@ -33,13 +33,15 @@ TESTS_ENVIRONMENT = \
TMPDIR=$(top_builddir) \
$(VG)
TESTS = run-bindtests Guestfs005Load Guestfs010Basic
# Don't run the bindtests: they don't build since the addition of optargs.
# Haskell bindings are incomplete.
TESTS = Guestfs005Load Guestfs010Basic
check_DATA = Bindtests
#check_DATA = Bindtests
GHCFLAGS = -I$(top_builddir)/src -L$(top_builddir)/src/.libs -i$(srcdir)
all_targets = Bindtests Guestfs005Load Guestfs010Basic
all_targets = Guestfs005Load Guestfs010Basic
$(all_targets): $(top_builddir)/src/libguestfs.la
all: $(all_targets)