From 7746a144cd148a32604e768f878acff65c55a897 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 25 Nov 2005 10:44:03 +0000 Subject: r11899: add some usefull debug messages metze (This used to be commit 8b9447e8c1be58bd299d464d5d1f15d32c438374) --- source4/torture/nbt/winsreplication.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/source4/torture/nbt/winsreplication.c b/source4/torture/nbt/winsreplication.c index 1fd68cadb8..823a4b3332 100644 --- a/source4/torture/nbt/winsreplication.c +++ b/source4/torture/nbt/winsreplication.c @@ -4753,6 +4753,11 @@ static BOOL test_conflict_different_owner(struct test_wrepl_conflict_conn *ctx) } if (records[i].r2.sgroup_cleanup) { + if (!ret) { + printf("failed before sgroup_cleanup record[%u]: %s\n", i, records[i].line); + return ret; + } + /* clean up the SGROUP record */ wins_name_r1->name = &records[i].name; wins_name_r1->flags = WREPL_NAME_FLAGS(WREPL_TYPE_SGROUP, @@ -4808,6 +4813,11 @@ static BOOL test_conflict_different_owner(struct test_wrepl_conflict_conn *ctx) wins_name_r2->unknown = "255.255.255.255"; ret &= test_wrepl_update_one(ctx, records[i].r2.owner, wins_name_r2); ret &= test_wrepl_is_applied(ctx, records[i].r2.owner, wins_name_r2, True); + + if (!ret) { + printf("failed in sgroup_cleanup record[%u]: %s\n", i, records[i].line); + return ret; + } } /* the first one is a cleanup run */ -- cgit