[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

r2869 - in glibc-package/trunk/debian: . rules.d



Author: aurel32
Date: 2008-03-12 19:48:20 +0000 (Wed, 12 Mar 2008)
New Revision: 2869

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/rules.d/build.mk
Log:
  * debian/rules.d/build.mk: disable testsuite on ARM machines running a
    2.6.21 to 2.6.24 kernel.



Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2008-03-11 20:23:15 UTC (rev 2868)
+++ glibc-package/trunk/debian/changelog	2008-03-12 19:48:20 UTC (rev 2869)
@@ -28,6 +28,8 @@
   * control.in/main: build-depends on gcc-4.3 (>= 4.3.0-2) to make sure a cld
     instruction is emitted in the prologue of functions using stringops.
     Closes: #469568.
+  * debian/rules.d/build.mk: disable testsuite on ARM machines running a
+    2.6.21 to 2.6.24 kernel.
 
   [ Samuel Thibault ]
   * patches/hurd-i386/cvs-blocked-exceptions.diff: new patch to dump
@@ -37,7 +39,7 @@
   * patches/hurd-i386/local-gcc-4.1-init-first.diff: Update and actually
     apply.
 
- -- Aurelien Jarno <aurel32@debian.org>  Tue, 11 Mar 2008 21:01:52 +0100
+ -- Aurelien Jarno <aurel32@debian.org>  Wed, 12 Mar 2008 20:47:44 +0100
 
 glibc (2.7-9) unstable; urgency=low
 

Modified: glibc-package/trunk/debian/rules.d/build.mk
===================================================================
--- glibc-package/trunk/debian/rules.d/build.mk	2008-03-11 20:23:15 UTC (rev 2868)
+++ glibc-package/trunk/debian/rules.d/build.mk	2008-03-12 19:48:20 UTC (rev 2869)
@@ -107,9 +107,9 @@
 	elif grep -q "cpu model.*SiByte SB1" /proc/cpuinfo ; then \
 	  echo "MIPS SB1 platform detected, skipping tests."; \
 	  echo "MIPS SB1 platform detected, skipping tests." > $(log_test) ; \
-	elif uname -m | grep -q "^arm" && uname -r | grep -q "2\.6\.2[1-2]" ; then \
-	  echo "ARM machine running a 2.6.21/22 kernel detected, tests have been skipped."; \
-	  echo "ARM machine running a 2.6.21/22 kernel detected, tests have been skipped." > $(log_test) ; \
+	elif uname -m | grep -q "^arm" && uname -r | grep -q "2\.6\.2[1-4]" ; then \
+	  echo "ARM machine running a 2.6.21-24 kernel detected, tests have been skipped."; \
+	  echo "ARM machine running a 2.6.21-24 kernel detected, tests have been skipped." > $(log_test) ; \
 	elif [ $(call xx,RUN_TESTSUITE) != "yes" ]; then \
 	  echo "Testsuite disabled for $(curpass), skipping tests."; \
 	  echo "Tests have been disabled." > $(log_test) ; \


Reply to: