From eb536690e2a594c5570354897bd05adc6ac95436 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 5 Sep 2006 10:37:18 +0000 Subject: r18070: be more verbose when errors happen metze (This used to be commit 9d71a037b10325dd5a258f59b8434b9fa158462e) --- source3/torture/torture.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source3/torture') diff --git a/source3/torture/torture.c b/source3/torture/torture.c index 2ee0ca5ed7..2b3d245d25 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -224,6 +224,8 @@ static BOOL torture_open_connection_share(struct cli_state **c, username, workgroup, password, flags, Undefined, &retry); if (!NT_STATUS_IS_OK(status)) { + printf("failed to open share connection: //%s/%s port:%d - %s\n", + hostname, sharename, port_to_use, nt_errstr(status)); return False; } @@ -3682,6 +3684,7 @@ static BOOL run_pipe_number(int dummy) break; } num_pipes++; + printf("\r%6d", num_pipes); } printf("pipe_number test - we can open %d %s pipes.\n", num_pipes, pipe_name ); -- cgit