r24688: Make output subunit-parseable.
authorJelmer Vernooij <jelmer@samba.org>
Mon, 27 Aug 2007 00:19:45 +0000 (00:19 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 20:02:44 +0000 (15:02 -0500)
(This used to be commit 2585c6feb22b4409a635017875a2e93fe7c436ba)

source4/lib/talloc/testsuite.c

index 2e3ae65082ffd3175994a258cdfb4f0d925d9c4d..ddf6865b1a5621a61e580c3df00d916bbe2c157a 100644 (file)
@@ -106,7 +106,7 @@ static bool test_ref1(void)
 {
        void *root, *p1, *p2, *ref, *r1;
 
-       printf("test: ref1 [\nSINGLE REFERENCE FREE\n]\n");
+       printf("test: ref1\n# SINGLE REFERENCE FREE\n");
 
        root = talloc_named_const(NULL, 0, "root");
        p1 = talloc_named_const(root, 1, "p1");
@@ -162,7 +162,7 @@ static bool test_ref2(void)
 {
        void *root, *p1, *p2, *ref, *r1;
 
-       printf("test: ref2 [\nDOUBLE REFERENCE FREE\n]\n");
+       printf("test: ref2\n# DOUBLE REFERENCE FREE\n");
        root = talloc_named_const(NULL, 0, "root");
        p1 = talloc_named_const(root, 1, "p1");
        talloc_named_const(p1, 1, "x1");
@@ -217,7 +217,7 @@ static bool test_ref3(void)
 {
        void *root, *p1, *p2, *ref, *r1;
 
-       printf("test: ref3 [\nPARENT REFERENCE FREE\n]\n");
+       printf("test: ref3\n# PARENT REFERENCE FREE\n");
 
        root = talloc_named_const(NULL, 0, "root");
        p1 = talloc_named_const(root, 1, "p1");
@@ -256,7 +256,7 @@ static bool test_ref4(void)
 {
        void *root, *p1, *p2, *ref, *r1;
 
-       printf("test: ref4 [\nREFERRER REFERENCE FREE\n]\n");
+       printf("test: ref4\n# REFERRER REFERENCE FREE\n");
 
        root = talloc_named_const(NULL, 0, "root");
        p1 = talloc_named_const(root, 1, "p1");
@@ -306,7 +306,7 @@ static bool test_unlink1(void)
 {
        void *root, *p1, *p2, *ref, *r1;
 
-       printf("test: unlink [\nUNLINK\n]\n");
+       printf("test: unlink\n# UNLINK\n");
 
        root = talloc_named_const(NULL, 0, "root");
        p1 = talloc_named_const(root, 1, "p1");
@@ -358,7 +358,7 @@ static bool test_misc(void)
        double *d;
        const char *name;
 
-       printf("test: misc [\nMISCELLANEOUS\n]\n");
+       printf("test: misc\n# MISCELLANEOUS\n");
 
        root = talloc_new(NULL);
 
@@ -509,7 +509,7 @@ static bool test_realloc(void)
 {
        void *root, *p1, *p2;
 
-       printf("test: realloc [\nREALLOC\n]\n");
+       printf("test: realloc\n# REALLOC\n");
 
        root = talloc_new(NULL);
 
@@ -553,7 +553,7 @@ static bool test_realloc(void)
 
        talloc_free(root);
 
-       printf("success: REALLOC\n");
+       printf("success: realloc\n");
 
        return true;
 }
@@ -617,7 +617,7 @@ static bool test_type(void)
        };
        struct el1 *el1;
 
-       printf("test: type [\ntalloc type checking\n]\n");
+       printf("test: type\n# talloc type checking\n");
 
        root = talloc_new(NULL);
 
@@ -646,7 +646,7 @@ static bool test_steal(void)
 {
        void *root, *p1, *p2;
 
-       printf("test: steal [\nSTEAL\n]\n");
+       printf("test: steal\n# STEAL\n");
 
        root = talloc_new(NULL);
 
@@ -702,7 +702,7 @@ static bool test_move(void)
                int *x;
        } *t1, *t2;
 
-       printf("test: move [\nMOVE\n]\n");
+       printf("test: move\n# MOVE\n");
 
        root = talloc_new(NULL);
 
@@ -732,7 +732,7 @@ static bool test_realloc_fn(void)
 {
        void *root, *p1;
 
-       printf("test: realloc_fn [\ntalloc_realloc_fn\n]\n");
+       printf("test: realloc_fn\n# talloc_realloc_fn\n");
 
        root = talloc_new(NULL);
 
@@ -757,7 +757,7 @@ static bool test_unref_reparent(void)
 {
        void *root, *p1, *p2, *c1;
 
-       printf("test: unref_reparent [\nUNREFERENCE AFTER PARENT FREED\n]\n");
+       printf("test: unref_reparent\n# UNREFERENCE AFTER PARENT FREED\n");
 
        root = talloc_named_const(NULL, 0, "root");
        p1 = talloc_named_const(root, 1, "orig parent");
@@ -794,7 +794,7 @@ static bool test_speed(void)
        int i;
        struct timeval tv;
 
-       printf("test: speed [\nTALLOC VS MALLOC SPEED\n]\n");
+       printf("test: speed\n# TALLOC VS MALLOC SPEED\n");
 
        tv = timeval_current();
        count = 0;
@@ -840,7 +840,7 @@ static bool test_lifeless(void)
        char *parent, *child; 
        void *child_owner = talloc_new(NULL);
 
-       printf("test: lifeless [\nTALLOC_UNLINK LOOP\n]\n");
+       printf("test: lifeless\n# TALLOC_UNLINK LOOP\n");
 
        parent = talloc_strdup(top, "parent");
        child = talloc_strdup(parent, "child");  
@@ -874,7 +874,7 @@ static bool test_loop(void)
                char *req2, *req3;
        } *req1;
 
-       printf("test: loop [\nTALLOC LOOP DESTRUCTION\n]\n");
+       printf("test: loop\n# TALLOC LOOP DESTRUCTION\n");
 
        parent = talloc_strdup(top, "parent");
        req1 = talloc(parent, struct req1);
@@ -908,7 +908,7 @@ static bool test_free_parent_deny_child(void)
        char *level2;
        char *level3;
 
-       printf("test: free_parent_deny_child [\nTALLOC FREE PARENT DENY CHILD\n]\n");
+       printf("test: free_parent_deny_child\n# TALLOC FREE PARENT DENY CHILD\n");
 
        level1 = talloc_strdup(top, "level1");
        level2 = talloc_strdup(level1, "level2");
@@ -938,7 +938,7 @@ static bool test_talloc_ptrtype(void)
        const char *location3;
        const char *location4;
 
-       printf("test: ptrtype [\nTALLOC PTRTYPE\n]\n");
+       printf("test: ptrtype\n# TALLOC PTRTYPE\n");
 
        s1 = talloc_ptrtype(top, s1);location1 = __location__;
 
@@ -1024,7 +1024,7 @@ static bool test_talloc_free_in_destructor(void)
        void *level4;
        void **level5;
 
-       printf("test: free_in_destructor [\nTALLOC FREE IN DESTRUCTOR\n]\n");
+       printf("test: free_in_destructor\n# TALLOC FREE IN DESTRUCTOR\n");
 
        level0 = talloc_new(NULL);
        level1 = talloc_new(level0);
@@ -1053,7 +1053,7 @@ static bool test_autofree(void)
 #if _SAMBA_BUILD_ < 4
        /* autofree test would kill smbtorture */
        void *p;
-       printf("test: autofree [\nTALLOC AUTOFREE CONTEXT\n]\n");
+       printf("test: autofree\n# TALLOC AUTOFREE CONTEXT\n");
 
        p = talloc_autofree_context();
        talloc_free(p);