2 * EGLib Unit Group/Test Runners
5 * Aaron Bockover (abockover@novell.com)
7 * (C) 2006 Novell, Inc.
9 * Permission is hereby granted, free of charge, to any person obtaining
10 * a copy of this software and associated documentation files (the
11 * "Software"), to deal in the Software without restriction, including
12 * without limitation the rights to use, copy, modify, merge, publish,
13 * distribute, sublicense, and/or sell copies of the Software, and to
14 * permit persons to whom the Software is furnished to do so, subject to
15 * the following conditions:
17 * The above copyright notice and this permission notice shall be
18 * included in all copies or substantial portions of the Software.
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35 #ifdef HAVE_SYS_TIME_H
44 extern gint global_passed
, global_tests
;
46 static gchar
*last_result
= NULL
;
49 run_test(Test
*test
, gchar
**result_out
)
53 if((result
= test
->handler()) == NULL
) {
63 run_group(Group
*group
, gint iterations
, gboolean quiet
,
64 gboolean time
, gchar
*tests_to_run_s
)
66 Test
*tests
= group
->handler();
67 gint i
, j
, passed
= 0, total
= 0;
68 gdouble start_time_group
, start_time_test
;
69 gchar
**tests_to_run
= NULL
;
73 printf("[%s] (%dx)\n", group
->name
, iterations
);
75 printf("[%s]\n", group
->name
);
79 if(tests_to_run_s
!= NULL
) {
80 tests_to_run
= eg_strsplit(tests_to_run_s
, ",", -1);
83 start_time_group
= get_timestamp();
85 for(i
= 0; tests
[i
].name
!= NULL
; i
++) {
87 gboolean iter_pass
, run
;
90 if(tests_to_run
!= NULL
) {
93 for(j
= 0; tests_to_run
[j
] != NULL
; j
++) {
94 if(strcmp(tests_to_run
[j
], tests
[i
].name
) == 0) {
110 printf(" %s: ", tests
[i
].name
);
113 start_time_test
= get_timestamp();
115 for(j
= 0; j
< iterations
; j
++) {
116 iter_pass
= run_test(&(tests
[i
]), &result
);
126 printf("OK (%g)\n", get_timestamp() - start_time_test
);
133 printf("FAILED (%s)\n", result
);
136 if(last_result
== result
) {
143 global_passed
+= passed
;
144 global_tests
+= total
;
147 gdouble pass_percentage
= ((gdouble
)passed
/ (gdouble
)total
) * 100.0;
149 printf(" %d / %d (%g%%, %g)\n", passed
, total
,
150 pass_percentage
, get_timestamp() - start_time_group
);
152 printf(" %d / %d (%g%%)\n", passed
, total
, pass_percentage
);
156 if(tests_to_run
!= NULL
) {
157 eg_strfreev(tests_to_run
);
160 return passed
== total
;
164 FAILED(const gchar
*format
, ...)
170 va_start(args
, format
);
171 n
= vasprintf(&ret
, format
, args
);
186 /* FIXME: We should use g_get_current_time here */
188 long int l
= GetTickCount();
189 return (gdouble
)(l
/ 1000) + (1.e
-6) * ((l
% 1000) * 1000);
192 gettimeofday(&tp
, NULL
);
193 return (gdouble
)tp
.tv_sec
+ (1.e
-6) * tp
.tv_usec
;
198 * Duplicating code here from EGlib to avoid g_strsplit skew between
203 eg_strsplit (const gchar
*string
, const gchar
*delimiter
, gint max_tokens
)
206 gchar
*strtok_save
, **vector
;
207 gchar
*token
, *token_c
;
211 g_return_val_if_fail(string
!= NULL
, NULL
);
212 g_return_val_if_fail(delimiter
!= NULL
, NULL
);
213 g_return_val_if_fail(delimiter
[0] != 0, NULL
);
215 token_length
= strlen(string
);
216 string_c
= (gchar
*)g_malloc(token_length
+ 1);
217 memcpy(string_c
, string
, token_length
);
218 string_c
[token_length
] = 0;
221 token
= (gchar
*)strtok_r(string_c
, delimiter
, &strtok_save
);
223 while(token
!= NULL
) {
224 token_length
= strlen(token
);
225 token_c
= (gchar
*)g_malloc(token_length
+ 1);
226 memcpy(token_c
, token
, token_length
);
227 token_c
[token_length
] = 0;
229 vector
= vector
== NULL
?
230 (gchar
**)g_malloc(2 * sizeof(vector
)) :
231 (gchar
**)g_realloc(vector
, (size
+ 1) * sizeof(vector
));
233 vector
[size
- 1] = token_c
;
236 if(max_tokens
> 0 && size
>= max_tokens
) {
237 if(size
> max_tokens
) {
243 token
= (gchar
*)strtok_r(NULL
, delimiter
, &strtok_save
);
247 if(vector
!= NULL
&& size
> 0) {
248 vector
[size
- 1] = NULL
;
258 eg_strfreev (gchar
**str_array
)
260 gchar
**orig
= str_array
;
261 if (str_array
== NULL
)
263 while (*str_array
!= NULL
){