Remove unused init function in subunit code.
authorJelmer Vernooij <jelmer@samba.org>
Sun, 16 Nov 2008 00:36:17 +0000 (01:36 +0100)
committerJelmer Vernooij <jelmer@samba.org>
Sun, 16 Nov 2008 00:36:17 +0000 (01:36 +0100)
lib/README
lib/torture/subunit.c

index b994447f4b733dc82e36c675505f9c48debb577a..acae62c37872fbeb21ae22c81360245ddfc4b4db 100644 (file)
@@ -8,3 +8,4 @@ socket_wrapper - Wrapper library allowing TCP/IP traffic to be redirected
                  over Unix domain sockets.
 talloc - Hierarchical pool based memory allocator 
 tdb - Simple but fast key/value database library, supporting multiple writers
+torture - Simple unit testing helper library
index d5ee344596fb5a9cece742f52f80f7853a3a3afc..832f11fafc3dc6674dcb7d9ae300c16c3e7782e6 100644 (file)
 #include "includes.h"
 #include "lib/torture/torture.h"
 
-static void subunit_init(struct torture_results *results) 
-{
-       /* FIXME: register segv and bus handler */
-}
-
 static void subunit_suite_start(struct torture_context *ctx,
                                struct torture_suite *suite)
 {
@@ -87,7 +82,6 @@ static void subunit_warning(struct torture_context *test,
 }
 
 const struct torture_ui_ops torture_subunit_ui_ops = {
-       .init = subunit_init,
        .comment = subunit_comment,
        .warning = subunit_warning,
        .test_start = subunit_test_start,