* tests/test-nonblocking-pipe.h (PIPE_DATA_BLOCK_SIZE): Set to 10000 on
native Windows.
+2019-07-02 Bruno Haible <bruno@clisp.org>
+
+ nonblocking-pipe tests: Fix test failure on MSVC.
+ * tests/test-nonblocking-pipe.h (PIPE_DATA_BLOCK_SIZE): Set to 10000 on
+ native Windows.
+
2019-07-02 Bruno Haible <bruno@clisp.org>
usleep: Implement with millisecond resolution on native Windows.
# define PIPE_DATA_BLOCK_SIZE 140000
#elif defined __linux__ && defined __powerpc__
# define PIPE_DATA_BLOCK_SIZE 1100000
+#elif defined _WIN32 && !defined __CYGWIN__
+# define PIPE_DATA_BLOCK_SIZE 10000
#else
# define PIPE_DATA_BLOCK_SIZE 70000
#endif