diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2012-08-15 17:04:13 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2012-08-15 17:49:48 +0100 |
commit | cc25afcc35ed69ca1c005a1396578675437450e6 (patch) | |
tree | 0e6b8cd5dc846ff140dc8517f5f129442d237f66 | |
parent | 5abd7bfc4cd8411efb8c3ad30e8a2b2610a7a1be (diff) | |
download | libguestfs-cc25afcc35ed69ca1c005a1396578675437450e6.tar.gz libguestfs-cc25afcc35ed69ca1c005a1396578675437450e6.tar.xz libguestfs-cc25afcc35ed69ca1c005a1396578675437450e6.zip |
gobject: Disable bindtests.
- gint64 cannot be reliably sent. It seems to try to convert it
via a 32 bit int, and fails if it overflows.
- OStringList is not implemented yet.
-rwxr-xr-x | gobject/run-tests | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gobject/run-tests b/gobject/run-tests index 8b3f78a1..aa1aaa66 100755 --- a/gobject/run-tests +++ b/gobject/run-tests @@ -23,13 +23,13 @@ if [ -z "$GJS" ]; then exit 77 fi +echo "GObject bind tests skipped: Int64, OInt64 and OStringList are all broken" +exit 77 + rm -f bindtests.tmp $GJS $srcdir/bindtests.js > bindtests.tmp - -# OStringList is not implemented in GObject bindings yet, -# so we have to hack the results. XXX -diff -I ^ostringlist: -u ${srcdir}/../bindtests bindtests.tmp +diff -u ${srcdir}/../bindtests bindtests.tmp $GJS $srcdir/bindtests-manual.js 2>/dev/null |