From b78ebdbfc037a7ffe400edbd08bce7f03968405a Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 12 Jun 2006 19:49:53 +0000 Subject: r16165: Add some more helper utilities (This used to be commit 584cd50d2bbace27220427ab23d032b2aab7f047) --- source4/torture/ui.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source4/torture/ui.c') diff --git a/source4/torture/ui.c b/source4/torture/ui.c index 35ff3cee7d..9c25991d20 100644 --- a/source4/torture/ui.c +++ b/source4/torture/ui.c @@ -79,6 +79,11 @@ void torture_fail(struct torture_test *test, const char *fmt, ...) _PRINTF_ATTRI test->context->failed++; } +BOOL torture_result(struct torture_context *torture) +{ + return (torture->failed == 0); +} + void torture_skip(struct torture_test *test, const char *fmt, ...) _PRINTF_ATTRIBUTE(2,3) { va_list ap; -- cgit