From 4f0ff3c504e70b3aa1848b1a2cfbab9911bc53e4 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Thu, 12 Apr 2012 03:33:53 +0200 Subject: [PATCH] Disable ipc_send_recv_pipe test on Windows It's not supported yet --- test/test-list.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test-list.h b/test/test-list.h index 5743243b..e43f0525 100644 --- a/test/test-list.h +++ b/test/test-list.h @@ -24,7 +24,9 @@ TEST_DECLARE (tty) TEST_DECLARE (stdio_over_pipes) TEST_DECLARE (ipc_listen_before_write) TEST_DECLARE (ipc_listen_after_write) +#ifndef _WIN32 TEST_DECLARE (ipc_send_recv_pipe) +#endif TEST_DECLARE (ipc_send_recv_tcp) TEST_DECLARE (ipc_tcp_connection) TEST_DECLARE (tcp_ping_pong) @@ -179,7 +181,9 @@ TASK_LIST_START TEST_ENTRY (stdio_over_pipes) TEST_ENTRY (ipc_listen_before_write) TEST_ENTRY (ipc_listen_after_write) +#ifndef _WIN32 TEST_ENTRY (ipc_send_recv_pipe) +#endif TEST_ENTRY (ipc_send_recv_tcp) TEST_ENTRY (ipc_tcp_connection)