From 572930b1af390dcd862ea5861245f658c87d7016 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 12 Jun 2006 19:11:24 +0000 Subject: r16160: Fix double semicolon in ui.h Support output in perl's Test::Harness format (smbtorture output can now be parsed by the 'prove' utility which generates statistics about how much tests failed, succeeded, skipped, etc) (This used to be commit 18fab7a22c85e360d5e4fbb0b2f97504b9a6cfc9) --- source4/torture/ui.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/torture/ui.h') diff --git a/source4/torture/ui.h b/source4/torture/ui.h index f115291bcd..04760d6285 100644 --- a/source4/torture/ui.h +++ b/source4/torture/ui.h @@ -90,5 +90,5 @@ struct torture_test *torture_test(struct torture_context *ctx, const char *name, struct torture_test *torture_subtest(struct torture_test *parent, const char *name, const char *description); void torture_comment(struct torture_test *test, const char *comment, ...) _PRINTF_ATTRIBUTE(2,3); void torture_ok(struct torture_test *test); -void torture_fail(struct torture_test *test, const char *reason, ...) _PRINTF_ATTRIBUTE(2,3);; +void torture_fail(struct torture_test *test, const char *reason, ...) _PRINTF_ATTRIBUTE(2,3); void torture_skip(struct torture_test *test, const char *reason, ...) _PRINTF_ATTRIBUTE(2,3); -- cgit