1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-28 09:49:30 +03:00

r25513: don't hide warnings in subunit mode

metze
(This used to be commit 9efa06537a)
This commit is contained in:
Stefan Metzmacher
2007-10-05 08:53:13 +00:00
committed by Gerald (Jerry) Carter
parent e047f72e34
commit 54bc4556b9

View File

@ -380,9 +380,16 @@ static void subunit_comment(struct torture_context *test,
fprintf(stderr, "%s", comment);
}
static void subunit_warning(struct torture_context *test,
const char *comment)
{
fprintf(stderr, "WARNING!: %s\n", comment);
}
const static struct torture_ui_ops subunit_ui_ops = {
.init = subunit_init,
.comment = subunit_comment,
.warning = subunit_warning,
.test_start = subunit_test_start,
.test_result = subunit_test_result,
.suite_start = subunit_suite_start