The branch, master has been updated
via c7dfe73... s4:torture - "dbspeed" test - add newlines as we have
them in the other failure messages
from 52ab3ca... s4:torture - "dbspeed" test
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit c7dfe736a88549f5793521609aca68ca85545c1b
Author: Matthias Dieter Wallnöfer <[email protected]>
Date: Sun Apr 11 11:33:45 2010 +0200
s4:torture - "dbspeed" test - add newlines as we have them in the other
failure messages
-----------------------------------------------------------------------
Summary of changes:
source4/torture/local/dbspeed.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source4/torture/local/dbspeed.c b/source4/torture/local/dbspeed.c
index 38dd01c..77e0174 100644
--- a/source4/torture/local/dbspeed.c
+++ b/source4/torture/local/dbspeed.c
@@ -223,13 +223,13 @@ static bool test_ldb_speed(struct torture_context
*torture, const void *_data)
i = random() % torture_entries;
dn = ldb_dn_new_fmt(tmp_ctx, ldb,
"SID=S-1-5-21-53173311-3623041448-2049097239-%u", i);
if (ldb_search(ldb, tmp_ctx, &res, dn, LDB_SCOPE_BASE, NULL,
NULL) != LDB_SUCCESS || res->count != 1) {
- torture_result(torture, TORTURE_FAIL, "Failed to find
SID %d", i);
+ torture_result(torture, TORTURE_FAIL, "Failed to find
SID %d!\n", i);
goto failed;
}
talloc_free(res);
talloc_free(dn);
if (ldb_search(ldb, tmp_ctx, &res, NULL, LDB_SCOPE_SUBTREE,
NULL, "(UID=%u)", i) != LDB_SUCCESS || res->count != 1) {
- torture_result(torture, TORTURE_FAIL, "Failed to find
UID %d", i);
+ torture_result(torture, TORTURE_FAIL, "Failed to find
UID %d!\n", i);
goto failed;
}
talloc_free(res);
--
Samba Shared Repository