changeset 15992:5d8e9728d9c0

nonblocking tests: Fix test failure on Linux/MIPS. * tests/test-nonblocking-pipe.h (PIPE_DATA_BLOCK_SIZE) [Linux/MIPS]: Set to 270000.
author Bruno Haible <bruno@clisp.org>
date Thu, 27 Oct 2011 21:12:12 +0200
parents 19758b0c3160
children 6a9f65b7d482
files ChangeLog tests/test-nonblocking-pipe.h
diffstat 2 files changed, 8 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2011-10-27  Bruno Haible  <bruno@clisp.org>
+
+	nonblocking tests: Fix test failure on Linux/MIPS.
+	* tests/test-nonblocking-pipe.h (PIPE_DATA_BLOCK_SIZE) [Linux/MIPS]:
+	Set to 270000.
+
 2011-10-27  Bruno Haible  <bruno@clisp.org>
 
 	utimensat: Work around problem on Linux/hppa.
--- a/tests/test-nonblocking-pipe.h
+++ b/tests/test-nonblocking-pipe.h
@@ -22,7 +22,7 @@
 
      Linux                           >= 63489
      Linux/SPARC                     >= 126977
-     Linux/IA-64                     >= 253953
+     Linux/IA-64, Linux/MIPS         >= 253953
      FreeBSD, OpenBSD, MacOS X       >= 65537
      AIX                             >= 32769
      HP-UX                           >= 8193
@@ -33,7 +33,7 @@
      Cygwin                          >= 65537
      native Win32                    >= 4097 (depends on the _pipe argument)
  */
-#if defined __osf__ || (defined __linux__ && defined __ia64__)
+#if defined __osf__ || (defined __linux__ && (defined __ia64__ || defined __mips__))
 # define PIPE_DATA_BLOCK_SIZE 270000
 #elif defined __linux__ && defined __sparc__
 # define PIPE_DATA_BLOCK_SIZE 140000