From 920c1ca95c499194430a18a9f2186670c6861cc4 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 17 Jun 2006 00:17:50 +0000 Subject: r16328: Wrap all existing tests in simple single-function testsuites. (This used to be commit 7e811adf59841936b7e634fca4e95630f890c5af) --- source4/torture/auth/pac.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'source4/torture/auth/pac.c') diff --git a/source4/torture/auth/pac.c b/source4/torture/auth/pac.c index 316a67acb0..ecba5d1cc8 100644 --- a/source4/torture/auth/pac.c +++ b/source4/torture/auth/pac.c @@ -29,7 +29,6 @@ #include "samba3/samba3.h" #include "libcli/security/security.h" #include "torture/torture.h" -#include "torture/ui.h" static BOOL torture_pac_self_check(struct torture_context *test, const void *_data) @@ -662,9 +661,9 @@ static BOOL torture_pac_saved_check(struct torture_context *test, return True; } -BOOL torture_pac(struct torture_context *torture) +struct torture_suite *torture_pac(TALLOC_CTX *mem_ctx) { - struct torture_suite *suite = torture_suite_create(torture, "AUTH-PAC"); + struct torture_suite *suite = torture_suite_create(mem_ctx, "AUTH-PAC"); torture_suite_add_simple_tcase(suite, "self check", torture_pac_self_check, NULL); @@ -672,5 +671,5 @@ BOOL torture_pac(struct torture_context *torture) torture_suite_add_simple_tcase(suite, "saved check", torture_pac_saved_check, NULL); - return torture_run_suite(torture, suite); + return suite; } -- cgit