services/tests: Change pipe type from byte to message.
Signed-off-by: Bernhard Übelacker <bernhardu@mailbox.org> Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
543bfdf1af
commit
099a12ad40
|
@ -589,7 +589,7 @@ static void test_runner(void (*p_run_test)(void))
|
|||
sprintf(named_pipe_name, "\\\\.\\pipe\\%s_pipe", service_name);
|
||||
|
||||
pipe_handle = CreateNamedPipeA(named_pipe_name, PIPE_ACCESS_INBOUND,
|
||||
PIPE_TYPE_BYTE|PIPE_READMODE_BYTE|PIPE_WAIT, 10, 2048, 2048, 10000, NULL);
|
||||
PIPE_TYPE_MESSAGE|PIPE_READMODE_MESSAGE|PIPE_WAIT, 10, 2048, 2048, 10000, NULL);
|
||||
ok(pipe_handle != INVALID_HANDLE_VALUE, "CreateNamedPipe failed: %u\n", GetLastError());
|
||||
if(pipe_handle == INVALID_HANDLE_VALUE)
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue