Updates to Tomato RAF including NGINX && PHP
[tomato.git] / release / src / router / glib / tests / array-test.c
blob0bcd7b299676e69f3cc2dfd508ca845249d22fb9
1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 * Modified by the GLib Team and others 1997-1999. See the AUTHORS
22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
24 * GLib at ftp://ftp.gtk.org/pub/gtk/.
27 #undef G_LOG_DOMAIN
29 #include <stdio.h>
30 #include <string.h>
31 #include "glib.h"
33 int array[10000];
34 gboolean failed = FALSE;
36 #define TEST(m,cond) G_STMT_START { failed = !(cond); \
37 if (failed) \
38 { if (!m) \
39 g_print ("\n(%s:%d) failed for: %s\n", __FILE__, __LINE__, ( # cond )); \
40 else \
41 g_print ("\n(%s:%d) failed for: %s: (%s)\n", __FILE__, __LINE__, ( # cond ), (gchar*)m); \
42 } \
43 else \
44 g_print ("."); fflush (stdout); \
45 } G_STMT_END
47 #define C2P(c) ((gpointer) ((long) (c)))
48 #define P2C(p) ((gchar) ((long) (p)))
50 #define GLIB_TEST_STRING "el dorado "
51 #define GLIB_TEST_STRING_5 "el do"
53 typedef struct {
54 guint age;
55 gchar name[40];
56 } GlibTestInfo;
59 int
60 main (int argc,
61 char *argv[])
63 gint i;
64 GArray *garray;
65 GPtrArray *gparray;
66 GByteArray *gbarray;
68 /* array tests */
69 garray = g_array_new (FALSE, FALSE, sizeof (gint));
70 for (i = 0; i < 10000; i++)
71 g_array_append_val (garray, i);
73 for (i = 0; i < 10000; i++)
74 g_assert (g_array_index (garray, gint, i) == i);
76 g_array_free (garray, TRUE);
78 garray = g_array_new (FALSE, FALSE, sizeof (gint));
79 for (i = 0; i < 100; i++)
80 g_array_prepend_val (garray, i);
82 for (i = 0; i < 100; i++)
83 g_assert (g_array_index (garray, gint, i) == (100 - i - 1));
85 g_array_free (garray, TRUE);
87 /* pointer arrays */
88 gparray = g_ptr_array_new ();
89 for (i = 0; i < 10000; i++)
90 g_ptr_array_add (gparray, GINT_TO_POINTER (i));
92 for (i = 0; i < 10000; i++)
93 if (g_ptr_array_index (gparray, i) != GINT_TO_POINTER (i))
94 g_print ("array fails: %p ( %p )\n", g_ptr_array_index (gparray, i), GINT_TO_POINTER (i));
96 g_ptr_array_free (gparray, TRUE);
98 /* byte arrays */
99 gbarray = g_byte_array_new ();
100 for (i = 0; i < 10000; i++)
101 g_byte_array_append (gbarray, (guint8*) "abcd", 4);
103 for (i = 0; i < 10000; i++)
105 g_assert (gbarray->data[4*i] == 'a');
106 g_assert (gbarray->data[4*i+1] == 'b');
107 g_assert (gbarray->data[4*i+2] == 'c');
108 g_assert (gbarray->data[4*i+3] == 'd');
111 g_byte_array_free (gbarray, TRUE);
113 return 0;