From: Jelmer Vernooij Date: Thu, 3 May 2012 14:38:31 +0000 (+0200) Subject: libtorture: Improve suggestion to mention torture_assert_*() rather than X-Git-Tag: samba-4.0.0alpha21~383 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a38e2cbbb31866c4af3b352a9dbbfcabb41ab4b8;p=thirdparty%2Fsamba.git libtorture: Improve suggestion to mention torture_assert_*() rather than torture_result(). --- diff --git a/lib/torture/torture.c b/lib/torture/torture.c index a2799efe162..1b0a9564db2 100644 --- a/lib/torture/torture.c +++ b/lib/torture/torture.c @@ -444,7 +444,7 @@ 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. Missing torture_fail() or torture_result() call?"); + "Unknown error/failure. Missing torture_fail() or torture_assert_*() call?"); context->last_result = TORTURE_ERROR; } }