summaryrefslogtreecommitdiffstats
path: root/haskell
diff options
context:
space:
mode:
authorMatthew Booth <mbooth@redhat.com>2012-01-19 16:43:20 +0000
committerMatthew Booth <mbooth@redhat.com>2012-01-20 18:42:40 +0000
commit02ccef7684b0e0ec7c0e9435393f24b0c6b417f4 (patch)
tree14e6c0529769a6687dcbde3b4e736e4038241b01 /haskell
parente99a6a84834d924095a873514a159304091f2b1f (diff)
downloadlibguestfs-02ccef7684b0e0ec7c0e9435393f24b0c6b417f4.tar.gz
libguestfs-02ccef7684b0e0ec7c0e9435393f24b0c6b417f4.tar.xz
libguestfs-02ccef7684b0e0ec7c0e9435393f24b0c6b417f4.zip
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.
Diffstat (limited to 'haskell')
-rw-r--r--haskell/Makefile.am8
1 files changed, 5 insertions, 3 deletions
diff --git a/haskell/Makefile.am b/haskell/Makefile.am
index 5c1ff987..3781f076 100644
--- a/haskell/Makefile.am
+++ b/haskell/Makefile.am
@@ -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)