r35456 - in /desktop/experimental/glib2.0/debian: changelog rules

mpitt at users.alioth.debian.org mpitt at users.alioth.debian.org
Tue Jun 26 15:32:32 UTC 2012


Author: mpitt
Date: Tue Jun 26 15:32:31 2012
New Revision: 35456

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=35456
Log:
debian/rules: Fail the build on failed tests, except on architectures with
known current failures (arm*, kfreebsd*, s390x, sparc).

Modified:
    desktop/experimental/glib2.0/debian/changelog
    desktop/experimental/glib2.0/debian/rules

Modified: desktop/experimental/glib2.0/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/glib2.0/debian/changelog?rev=35456&op=diff
==============================================================================
--- desktop/experimental/glib2.0/debian/changelog [utf-8] (original)
+++ desktop/experimental/glib2.0/debian/changelog [utf-8] Tue Jun 26 15:32:31 2012
@@ -11,7 +11,8 @@
   * debian/rules: Set G_HOME to not clutter $HOME with ~/.dbus-keyrings and
     avoid failure on the buildds where creating /home/buildd/.dbus-keyrings
     fails.
-  * debian/rules: Fail the build on failed tests.
+  * debian/rules: Fail the build on failed tests, except on architectures with
+    known current failures (arm*, kfreebsd*, s390x, sparc).
   * Add 07_socket_test_timespan_jitter.patch:  On some buildds the poll
     duration in the /socket/timed_wait test is slightly lower than the
     requested 100000. Adjust test to not fail in these cases. Forwarded to

Modified: desktop/experimental/glib2.0/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/glib2.0/debian/rules?rev=35456&op=diff
==============================================================================
--- desktop/experimental/glib2.0/debian/rules [utf-8] (original)
+++ desktop/experimental/glib2.0/debian/rules [utf-8] Tue Jun 26 15:32:31 2012
@@ -54,7 +54,12 @@
 # where creating /home/buildd/.dbus-keyrings fails
 export G_HOME=$(CURDIR)/debian/build
 
+# make tests non-fatal on architectures which currently have failed tests
+ifneq ($(findstring $(DEB_BUILD_ARCH), armel armhf kfreebsd-i386 kfreebsd-amd64 s390x sparc),)
+DEB_MAKE_CHECK_TARGET = -k check || true
+else
 DEB_MAKE_CHECK_TARGET = -k check
+endif
 
 # configure flags
 DEB_CONFIGURE_EXTRA_FLAGS := \




More information about the pkg-gnome-commits mailing list