diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-06-12 23:03:02 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:09:05 -0500 |
commit | 02aee3000d9fb29997d275e62a730ef97aca0128 (patch) | |
tree | 021a676444245af0a5705ab4db3c19400190c5d5 | |
parent | 90be000cd5d02e480bba8d68a56e5b8a2f8711ab (diff) | |
download | samba-02aee3000d9fb29997d275e62a730ef97aca0128.tar.gz samba-02aee3000d9fb29997d275e62a730ef97aca0128.tar.bz2 samba-02aee3000d9fb29997d275e62a730ef97aca0128.zip |
r16174: Couple of fixes to the UI code - make 'torture_ok()' optional, be more verbose by default.
(This used to be commit 8ef13a50b9e80811342058cdf15cf84a8ed7532e)
-rw-r--r-- | source4/torture/smbtorture.c | 17 | ||||
-rw-r--r-- | source4/torture/ui.c | 18 | ||||
-rw-r--r-- | source4/torture/ui.h | 2 |
3 files changed, 35 insertions, 2 deletions
diff --git a/source4/torture/smbtorture.c b/source4/torture/smbtorture.c index 97b6ab2c65..c2c76d25c3 100644 --- a/source4/torture/smbtorture.c +++ b/source4/torture/smbtorture.c @@ -240,7 +240,22 @@ static void simple_test_start (struct torture_test *test) static void simple_test_result (struct torture_test *test, enum torture_result res, const char *reason) { - printf("\t %d: %s\n",res, reason?reason:""); + switch (res) { + case TORTURE_OK: + if (reason) + printf("OK: %s\n", reason); + break; + case TORTURE_FAIL: + printf("ERROR: %s - %s\n", test->name, reason); + break; + case TORTURE_TODO: + printf("TODO: %s - %s\n", test->name, reason); + break; + case TORTURE_SKIP: + printf("SKIP: %s - %s\n", test->name, reason); + break; + + } } static void simple_comment (struct torture_test *test, const char *comment) diff --git a/source4/torture/ui.c b/source4/torture/ui.c index 9c25991d20..62f8bacb65 100644 --- a/source4/torture/ui.c +++ b/source4/torture/ui.c @@ -22,6 +22,17 @@ #include "includes.h" #include "torture/ui.h" +static int test_destructor(void *_test) +{ + struct torture_test *test = _test; + + if (test->result == TORTURE_OK) + torture_ok(test); + + return 0; +} + + struct torture_test *torture_test(struct torture_context *ctx, const char *name, const char *description) { struct torture_test *test = talloc(ctx, struct torture_test); @@ -32,6 +43,8 @@ struct torture_test *torture_test(struct torture_context *ctx, const char *name, ctx->ui_ops->test_start(test); + talloc_set_destructor(test, test_destructor); + return test; } @@ -44,8 +57,10 @@ struct torture_test *torture_subtest(struct torture_test *parent, const char *na test->context = parent->context; test->context->ui_ops->test_start(test); + + talloc_set_destructor(test, test_destructor); - return NULL; + return test; } void torture_comment(struct torture_test *test, const char *comment, ...) _PRINTF_ATTRIBUTE(2,3) @@ -60,6 +75,7 @@ void torture_comment(struct torture_test *test, const char *comment, ...) _PRINT talloc_free(tmp); } + void torture_ok(struct torture_test *test) { test->context->ui_ops->test_result(test, TORTURE_OK, NULL); diff --git a/source4/torture/ui.h b/source4/torture/ui.h index 8bc309d717..9c19d99f1c 100644 --- a/source4/torture/ui.h +++ b/source4/torture/ui.h @@ -43,6 +43,8 @@ struct torture_test void *ui_data; + enum torture_result result; + struct torture_context *context; }; |