From e84cc8e538020b4fdaea0719b18d26b24862d5a4 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 22 Sep 2004 05:17:55 +0000 Subject: r2500: disable the sleep test in echo until we have a win32 echo server that does Microsoft style async rpc serving (This used to be commit 050dcd9b95576e1a9c0cb2144fc01c690853abc0) --- source4/torture/rpc/echo.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'source4/torture/rpc/echo.c') diff --git a/source4/torture/rpc/echo.c b/source4/torture/rpc/echo.c index 43c794e040..707b0d0313 100644 --- a/source4/torture/rpc/echo.c +++ b/source4/torture/rpc/echo.c @@ -277,23 +277,21 @@ BOOL torture_rpc_echo(int dummy) return False; } -#if 1 if (!test_addone(p, mem_ctx)) { ret = False; } - if (!test_echodata(p, mem_ctx)) { + if (!test_sinkdata(p, mem_ctx)) { ret = False; } - if (!test_sourcedata(p, mem_ctx)) { + if (!test_echodata(p, mem_ctx)) { ret = False; } - if (!test_sinkdata(p, mem_ctx)) { + if (!test_sourcedata(p, mem_ctx)) { ret = False; } -#endif if (!test_testcall(p, mem_ctx)) { ret = False; @@ -303,10 +301,11 @@ BOOL torture_rpc_echo(int dummy) ret = False; } +/* if (!test_sleep(p, mem_ctx)) { ret = False; } - +*/ printf("\n"); talloc_destroy(mem_ctx); -- cgit