[Pkg-mysql-commits] r1113 - trunk/debian
Norbert Tretkowski
nobse at alioth.debian.org
Mon Dec 31 11:20:59 UTC 2007
Author: nobse
Date: 2007-12-31 11:20:59 +0000 (Mon, 31 Dec 2007)
New Revision: 1113
Modified:
trunk/debian/changelog
trunk/debian/rules
Log:
Don't run testsuite on alpha, arm, hppa, mipsel and sparc.
Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog 2007-12-27 23:28:35 UTC (rev 1112)
+++ trunk/debian/changelog 2007-12-31 11:20:59 UTC (rev 1113)
@@ -8,14 +8,15 @@
* Removed 88_mctype_attrib.dpatch, http://bugs.mysql.com/bug.php?id=25118 is
closed with http://lists.mysql.com/commits/24337
* Added mysql-community/mysql-enterprise virtual packages in provides and
- conflicts to ease transitions between versions.
+ conflicts to ease transitions between versions.
[ Norbert Tretkowski ]
* Add -fPIC to CFLAGS to allow other packages to be built against
libmysqld.a on amd64. (closes: #457915)
* New patch 54_ssl-client-support.dpatch to fix SSL client support.
+ * Don't run testsuite on alpha, arm, hppa, mipsel and sparc.
- -- Norbert Tretkowski <nobse at debian.org> Thu, 27 Dec 2007 09:37:03 +0100
+ -- Norbert Tretkowski <nobse at debian.org> Mon, 31 Dec 2007 12:20:15 +0100
mysql-dfsg-5.0 (5.0.51-1) unstable; urgency=low
Modified: trunk/debian/rules
===================================================================
--- trunk/debian/rules 2007-12-27 23:28:35 UTC (rev 1112)
+++ trunk/debian/rules 2007-12-31 11:20:59 UTC (rev 1113)
@@ -29,6 +29,10 @@
USE_ASSEMBLER=--enable-assembler
endif
+ifneq ($(findstring $(ARCH), alpha arm hppa mipsel sparc),)
+ RUN_TESTSUITE=1
+endif
+
# This causes seg11 crashes if LDAP is used for groups in /etc/nsswitch.conf
# so it is disabled by default although, according to MySQL, it brings >10%
# performance gain if enabled. See #299382.
@@ -118,7 +122,7 @@
$(MAKE) $(MAKE_J)
- if [ ! -f testsuite-stamp ] ; then \
+ if [ "$(RUN_TESTSUITE)" == "1" ] && [ ! -f testsuite-stamp ] ; then \
cd mysql-test ; \
/usr/bin/perl ./mysql-test-run.pl --mysqld=--user=root --force ; \
/usr/bin/perl ./mysql-test-run.pl --mysqld=--user=root --force --ps-protocol ; \
More information about the Pkg-mysql-commits
mailing list