1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

r16900: Nicer display of the test results.

rafal
(This used to be commit bb0e9297b2)
This commit is contained in:
Rafal Szczesniak 2006-07-09 13:56:11 +00:00 committed by Gerald (Jerry) Carter
parent 82f1374d2b
commit 56bb8f4062

View File

@ -24,6 +24,7 @@
#include "libnet/libnet.h"
#include "librpc/gen_ndr/nbt.h"
#include "librpc/rpc/dcerpc.h"
#include "libcli/libcli.h"
#include "torture/torture.h"
@ -36,7 +37,6 @@ BOOL torture_lookup(struct torture_context *torture)
struct libnet_Lookup lookup;
struct dcerpc_binding *bind;
const char *bindstr;
const char *address;
mem_ctx = talloc_init("test_lookup");
@ -126,6 +126,7 @@ BOOL torture_lookup_pdc(struct torture_context *torture)
TALLOC_CTX *mem_ctx;
struct libnet_context *ctx;
struct libnet_LookupDCs *lookup;
int i;
mem_ctx = talloc_init("test_lookup_pdc");
@ -146,13 +147,20 @@ BOOL torture_lookup_pdc(struct torture_context *torture)
status = libnet_LookupDCs(ctx, mem_ctx, lookup);
if (!NT_STATUS_IS_OK(status)) {
printf("Couldn't lookup pdc %s: %s\n", lookup->in.domain_name, nt_errstr(status));
printf("Couldn't lookup pdc %s: %s\n", lookup->in.domain_name,
nt_errstr(status));
ret = False;
goto done;
}
ret = True;
printf("DCs of domain [%s] found.\n", lookup->in.domain_name);
for (i = 0; i < lookup->out.num_dcs; i++) {
printf("\tDC[%d]: name=%s, address=%s\n", i, lookup->out.dcs[i].name,
lookup->out.dcs[i].address);
}
done:
talloc_free(mem_ctx);
return ret;