]> git.ipfire.org Git - thirdparty/openvpn.git/commitdiff
Remove BUFFER_LIST_AGGREGATE_TEST test code
authorArne Schwabe <arne@rfc2549.org>
Sat, 1 Jan 2022 16:06:32 +0000 (17:06 +0100)
committerGert Doering <gert@greenie.muc.de>
Fri, 14 Jan 2022 17:21:50 +0000 (18:21 +0100)
This code has been dead for years and also does not seem that
useful anymore since we already have a proper unit_test for the
buffer code.

Signed-off-by: Arne Schwabe <arne@rfc2549.org>
Acked-by: Gert Doering <gert@greenie.muc.de>
Message-Id: <20220101160632.2250072-1-arne@rfc2549.org>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg23492.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
src/openvpn/init.c

index e87237140c25ccd76fb5722e617dd81377aa2cf0..4e37b88553b6b309975db5c1d7ca026f92bcb95a 100644 (file)
@@ -870,70 +870,6 @@ init_static(void)
     return false;
 #endif
 
-#ifdef BUFFER_LIST_AGGREGATE_TEST
-    /* test buffer_list_aggregate function */
-    {
-        static const char *text[] = {
-            "It was a bright cold day in April, ",
-            "and the clocks were striking ",
-            "thirteen. ",
-            "Winston Smith, ",
-            "his chin nuzzled into his breast in an ",
-            "effort to escape the vile wind, ",
-            "slipped quickly through the glass doors ",
-            "of Victory Mansions, though not quickly ",
-            "enough to prevent a swirl of gritty dust from ",
-            "entering along with him."
-        };
-
-        int iter, listcap;
-        for (listcap = 0; listcap < 12; ++listcap)
-        {
-            for (iter = 0; iter < 512; ++iter)
-            {
-                struct buffer_list *bl = buffer_list_new(listcap);
-                {
-                    int i;
-                    for (i = 0; i < SIZE(text); ++i)
-                    {
-                        buffer_list_push(bl, (unsigned char *)text[i]);
-                    }
-                }
-                printf("[cap=%d i=%d] *************************\n", listcap, iter);
-                if (!(iter & 8))
-                {
-                    buffer_list_aggregate(bl, iter/2);
-                }
-                if (!(iter & 16))
-                {
-                    buffer_list_push(bl, (unsigned char *)"Even more text...");
-                }
-                buffer_list_aggregate(bl, iter);
-                if (!(iter & 1))
-                {
-                    buffer_list_push(bl, (unsigned char *)"More text...");
-                }
-                {
-                    struct buffer *buf;
-                    while ((buf = buffer_list_peek(bl)))
-                    {
-                        int c;
-                        printf("'");
-                        while ((c = buf_read_u8(buf)) >= 0)
-                        {
-                            putchar(c);
-                        }
-                        printf("'\n");
-                        buffer_list_advance(bl, 0);
-                    }
-                }
-                buffer_list_free(bl);
-            }
-        }
-        return false;
-    }
-#endif /* ifdef BUFFER_LIST_AGGREGATE_TEST */
-
 #ifdef MSTATS_TEST
     {
         int i;