diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2012-05-03 13:42:57 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2012-05-03 15:31:06 +0200 |
commit | 1077337afb7fd62b8d9aa4bfb1b95e7a1104e3da (patch) | |
tree | 70d632c1531a3eb94dd0e5e2ded22cbe2f6169cd | |
parent | 7ed9ebab83f1883d09bee742d81e8d2308da1bfe (diff) | |
download | samba-1077337afb7fd62b8d9aa4bfb1b95e7a1104e3da.tar.gz |
torture: Suggest torture_fail() / torture_result().
Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Thu May 3 15:31:06 CEST 2012 on sn-devel-104
-rw-r--r-- | lib/torture/torture.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/torture/torture.c b/lib/torture/torture.c index cee6bdb934d..a2799efe162 100644 --- a/lib/torture/torture.c +++ b/lib/torture/torture.c @@ -443,7 +443,8 @@ static bool internal_torture_run_test(struct torture_context *context, if (!success && context->last_result == TORTURE_OK) { if (context->last_reason == NULL) - context->last_reason = talloc_strdup(context, "Unknown error/failure"); + context->last_reason = talloc_strdup(context, + "Unknown error/failure. Missing torture_fail() or torture_result() call?"); context->last_result = TORTURE_ERROR; } } |