[Python-modules-commits] r29401 - in packages/pyzmq/trunk/debian (changelog rules)

jtaylor-guest at users.alioth.debian.org jtaylor-guest at users.alioth.debian.org
Thu Jun 19 14:22:43 UTC 2014


    Date: Thursday, June 19, 2014 @ 14:22:42
  Author: jtaylor-guest
Revision: 29401

ignore test results on mips, hard to debug race condition, no reason to delay testing migration

Modified:
  packages/pyzmq/trunk/debian/changelog
  packages/pyzmq/trunk/debian/rules

Modified: packages/pyzmq/trunk/debian/changelog
===================================================================
--- packages/pyzmq/trunk/debian/changelog	2014-06-19 11:44:29 UTC (rev 29400)
+++ packages/pyzmq/trunk/debian/changelog	2014-06-19 14:22:42 UTC (rev 29401)
@@ -2,6 +2,8 @@
 
   * New upstream release
   * monitor-test.patch: fix test logic for delayless connects on freebsd
+  * ignore test results on mips, hard to debug race condition, no reason to
+    delay testing migration (Closes: #750813)
 
  -- Julian Taylor <jtaylor.debian at googlemail.com>  Tue, 17 Jun 2014 23:23:35 +0200
 

Modified: packages/pyzmq/trunk/debian/rules
===================================================================
--- packages/pyzmq/trunk/debian/rules	2014-06-19 11:44:29 UTC (rev 29400)
+++ packages/pyzmq/trunk/debian/rules	2014-06-19 14:22:42 UTC (rev 29401)
@@ -3,6 +3,7 @@
 DPKG_EXPORT_BUILDFLAGS = 1
 include /usr/share/dpkg/buildflags.mk
 
+ARCHITECTURE := $(shell dpkg-architecture -qDEB_HOST_ARCH)
 export PYBUILD_DESTDIR_python2=debian/python-zmq/
 export PYBUILD_DESTDIR_python2-dbg=debian/python-zmq-dbg/
 export PYBUILD_DESTDIR_python3=debian/python3-zmq/
@@ -41,3 +42,11 @@
 	find debian/python3-zmq -depth -type d -empty -exec rmdir {} \;
 	find debian/python3-zmq-dbg -type d -depth -empty -exec rmdir {} \;
 	find debian/pypy-zmq -type d -depth -empty -exec rmdir {} \;
+
+override_dh_auto_test:
+# hard to debug race condition in monitor sockets
+ifneq (,$(filter $(ARCHITECTURE), mipsel mips))
+	-dh_auto_test
+else
+	dh_auto_test
+endif




More information about the Python-modules-commits mailing list