diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-06-17 00:17:50 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:09:10 -0500 |
commit | 920c1ca95c499194430a18a9f2186670c6861cc4 (patch) | |
tree | 4fc108e421b6448ed756c5b7dd8b5db9f6d88c27 /source4/torture/local/util_file.c | |
parent | 5b7ee5e7d69f73618d7cc7a4229b98c429506084 (diff) | |
download | samba-920c1ca95c499194430a18a9f2186670c6861cc4.tar.gz samba-920c1ca95c499194430a18a9f2186670c6861cc4.tar.bz2 samba-920c1ca95c499194430a18a9f2186670c6861cc4.zip |
r16328: Wrap all existing tests in simple single-function testsuites.
(This used to be commit 7e811adf59841936b7e634fca4e95630f890c5af)
Diffstat (limited to 'source4/torture/local/util_file.c')
-rw-r--r-- | source4/torture/local/util_file.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/source4/torture/local/util_file.c b/source4/torture/local/util_file.c index f6152fe4c0..c950e68c6e 100644 --- a/source4/torture/local/util_file.c +++ b/source4/torture/local/util_file.c @@ -23,7 +23,6 @@ #include "includes.h" #include "system/filesys.h" #include "torture/torture.h" -#include "torture/ui.h" #define TEST_FILENAME "utilfile.test" #define TEST_LINE1 "This is list line 1..." @@ -83,9 +82,9 @@ static BOOL test_afdgets(struct torture_context *test, const void *data) return True; } -BOOL torture_local_util_file(struct torture_context *torture) +struct torture_suite *torture_local_util_file(TALLOC_CTX *mem_ctx) { - struct torture_suite *suite = torture_suite_create(torture, "util_file"); + struct torture_suite *suite = torture_suite_create(mem_ctx, "util_file"); torture_suite_add_simple_tcase(suite, "file_load_save", test_file_load_save, NULL); @@ -93,5 +92,5 @@ BOOL torture_local_util_file(struct torture_context *torture) torture_suite_add_simple_tcase(suite, "afdgets", test_afdgets, NULL); - return torture_run_suite(torture, suite); + return suite; } |