[Pkg-mysql-commits] r2071 - in mysql-5.5/branches/experimental/debian: . patches

Nicholas Bamber periapt at alioth.debian.org
Sun Apr 29 18:16:35 UTC 2012


tags 540153 pending
thanks

Author: periapt
Date: 2012-04-29 18:16:34 +0000 (Sun, 29 Apr 2012)
New Revision: 2071

Added:
   mysql-5.5/branches/experimental/debian/patches/93_kfreebsd_tests.patch
Modified:
   mysql-5.5/branches/experimental/debian/changelog
   mysql-5.5/branches/experimental/debian/patches/series
Log:
Added patch to test suite to accept socket paths less than 40
characters long (Closes: #540153)

Modified: mysql-5.5/branches/experimental/debian/changelog
===================================================================
--- mysql-5.5/branches/experimental/debian/changelog	2012-04-29 08:29:31 UTC (rev 2070)
+++ mysql-5.5/branches/experimental/debian/changelog	2012-04-29 18:16:34 UTC (rev 2071)
@@ -1,3 +1,10 @@
+mysql-5.5 (5.5.20-2) UNRELEASED; urgency=low
+
+  * Added patch to test suite to accept socket paths less than 40
+    characters long (Closes: #540153)
+
+ -- Nicholas Bamber <nicholas at periapt.co.uk>  Sun, 29 Apr 2012 09:39:04 +0100
+
 mysql-5.5 (5.5.20-1) experimental; urgency=low
 
   [ Guillaume Plessis ]

Added: mysql-5.5/branches/experimental/debian/patches/93_kfreebsd_tests.patch
===================================================================
--- mysql-5.5/branches/experimental/debian/patches/93_kfreebsd_tests.patch	                        (rev 0)
+++ mysql-5.5/branches/experimental/debian/patches/93_kfreebsd_tests.patch	2012-04-29 18:16:34 UTC (rev 2071)
@@ -0,0 +1,18 @@
+Author: Nicholas Bamber <nicholas at periapt.co.uk>
+Debian-Bug: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=540153
+Subject: tests not getting started on kFreeBSD
+ As per #670722 I found that the test socket created to test
+ file name truncation was barfing even for the shortened form.
+Forwarded: no
+Last-Update: 2012-04-28
+--- a/mysql-test/lib/My/Platform.pm
++++ b/mysql-test/lib/My/Platform.pm
+@@ -113,6 +113,8 @@
+   # Similarly the path length is hidden.
+   # See Debian bug #651002
+   return 0 if ($^O eq 'gnu');
++  # See Debian bug #670722 - failing on kFreeBSD even after setting short path
++  return 0 if length $path < 40;
+ 
+   require IO::Socket::UNIX;
+ 

Modified: mysql-5.5/branches/experimental/debian/patches/series
===================================================================
--- mysql-5.5/branches/experimental/debian/patches/series	2012-04-29 08:29:31 UTC (rev 2070)
+++ mysql-5.5/branches/experimental/debian/patches/series	2012-04-29 18:16:34 UTC (rev 2071)
@@ -6,3 +6,4 @@
 71_disable_rpl_tests.patch
 72_fix_standalone_tests.patch
 73_mysqlcheck_tests.patch
+93_kfreebsd_tests.patch




More information about the Pkg-mysql-commits mailing list