|
1 /* GLIB - Library of useful routines for C programming |
|
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald |
|
3 * |
|
4 * This library is free software; you can redistribute it and/or |
|
5 * modify it under the terms of the GNU Lesser 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. |
|
8 * |
|
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 * Lesser General Public License for more details. |
|
13 * |
|
14 * You should have received a copy of the GNU Lesser 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. |
|
18 */ |
|
19 |
|
20 /* |
|
21 * Modified by the GLib Team and others 1997-2000. 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/. |
|
25 */ |
|
26 |
|
27 #undef G_DISABLE_ASSERT |
|
28 #undef G_LOG_DOMAIN |
|
29 |
|
30 #include <stdio.h> |
|
31 #include <string.h> |
|
32 #include "glib.h" |
|
33 |
|
34 #ifdef __SYMBIAN32__ |
|
35 #include "mrt2_glib2_test.h" |
|
36 #endif /*__SYMBIAN32__*/ |
|
37 |
|
38 static void |
|
39 sum_up (gpointer data, |
|
40 gpointer user_data) |
|
41 { |
|
42 gint *sum = (gint *)user_data; |
|
43 |
|
44 *sum += GPOINTER_TO_INT (data); |
|
45 } |
|
46 |
|
47 int |
|
48 main (int argc, |
|
49 char *argv[]) |
|
50 { |
|
51 gint i; |
|
52 GArray *garray; |
|
53 GPtrArray *gparray; |
|
54 GByteArray *gbarray; |
|
55 gint sum = 0; |
|
56 |
|
57 #ifdef __SYMBIAN32__ |
|
58 g_log_set_handler (NULL, G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL); |
|
59 g_set_print_handler(mrtPrintHandler); |
|
60 #endif /*__SYMBIAN32__*/ |
|
61 |
|
62 /* array tests */ |
|
63 garray = g_array_new (FALSE, FALSE, sizeof (gint)); |
|
64 for (i = 0; i < 10000; i++) |
|
65 g_array_append_val (garray, i); |
|
66 |
|
67 for (i = 0; i < 10000; i++) |
|
68 g_assert (g_array_index (garray, gint, i) == i); |
|
69 |
|
70 g_array_free (garray, TRUE); |
|
71 |
|
72 garray = g_array_new (FALSE, FALSE, sizeof (gint)); |
|
73 for (i = 0; i < 100; i++) |
|
74 g_array_prepend_val (garray, i); |
|
75 |
|
76 for (i = 0; i < 100; i++) |
|
77 g_assert (g_array_index (garray, gint, i) == (100 - i - 1)); |
|
78 |
|
79 g_array_free (garray, TRUE); |
|
80 |
|
81 /* pointer arrays */ |
|
82 gparray = g_ptr_array_new (); |
|
83 for (i = 0; i < 10000; i++) |
|
84 g_ptr_array_add (gparray, GINT_TO_POINTER (i)); |
|
85 |
|
86 for (i = 0; i < 10000; i++) |
|
87 if (g_ptr_array_index (gparray, i) != GINT_TO_POINTER (i)) |
|
88 g_print ("array fails: %p ( %p )\n", |
|
89 g_ptr_array_index (gparray, i), |
|
90 GINT_TO_POINTER (i)); |
|
91 |
|
92 g_ptr_array_foreach (gparray, sum_up, &sum); |
|
93 g_assert (sum == 49995000); |
|
94 |
|
95 |
|
96 |
|
97 |
|
98 g_ptr_array_free (gparray, TRUE); |
|
99 |
|
100 /* byte arrays */ |
|
101 gbarray = g_byte_array_new (); |
|
102 for (i = 0; i < 10000; i++) |
|
103 g_byte_array_append (gbarray, (guint8*) "abcd", 4); |
|
104 |
|
105 for (i = 0; i < 10000; i++) |
|
106 { |
|
107 g_assert (gbarray->data[4*i] == 'a'); |
|
108 g_assert (gbarray->data[4*i+1] == 'b'); |
|
109 g_assert (gbarray->data[4*i+2] == 'c'); |
|
110 g_assert (gbarray->data[4*i+3] == 'd'); |
|
111 } |
|
112 |
|
113 g_byte_array_free (gbarray, TRUE); |
|
114 |
|
115 #if __SYMBIAN32__ |
|
116 testResultXml("array-test"); |
|
117 #endif /* EMULATOR */ |
|
118 |
|
119 return 0; |
|
120 } |
|
121 |