1 /* Test and measure strcpy functions.
2 Copyright (C) 1999, 2002, 2003, 2005 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Written by Jakub Jelinek <jakub@redhat.com>, 1999.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
22 # define STRCPY_RESULT(dst, len) dst
24 # include "test-string.h"
26 char *simple_strcpy (char *, const char *);
28 IMPL (simple_strcpy
, 0)
32 simple_strcpy (char *dst
, const char *src
)
35 while ((*dst
++ = *src
++) != '\0');
40 typedef char *(*proto_t
) (char *, const char *);
43 do_one_test (impl_t
*impl
, char *dst
, const char *src
,
44 size_t len
__attribute__((unused
)))
46 if (CALL (impl
, dst
, src
) != STRCPY_RESULT (dst
, len
))
48 error (0, 0, "Wrong result in function %s %p %p", impl
->name
,
49 CALL (impl
, dst
, src
), STRCPY_RESULT (dst
, len
));
54 if (strcmp (dst
, src
) != 0)
56 error (0, 0, "Wrong result in function %s dst \"%s\" src \"%s\"",
57 impl
->name
, dst
, src
);
64 hp_timing_t start
__attribute ((unused
));
65 hp_timing_t stop
__attribute ((unused
));;
66 hp_timing_t best_time
= ~ (hp_timing_t
) 0;
69 for (i
= 0; i
< 32; ++i
)
71 HP_TIMING_NOW (start
);
72 CALL (impl
, dst
, src
);
74 HP_TIMING_BEST (best_time
, start
, stop
);
77 printf ("\t%zd", (size_t) best_time
);
82 do_test (size_t align1
, size_t align2
, size_t len
, int max_char
)
88 if (align1
+ len
>= page_size
)
92 if (align2
+ len
>= page_size
)
95 s1
= (char *) (buf1
+ align1
);
96 s2
= (char *) (buf2
+ align2
);
98 for (i
= 0; i
< len
; i
++)
99 s1
[i
] = 32 + 23 * i
% (max_char
- 32);
103 printf ("Length %4zd, alignment %2zd/%2zd:", len
, align1
, align2
);
105 FOR_EACH_IMPL (impl
, 0)
106 do_one_test (impl
, s2
, s1
, len
);
113 do_random_tests (void)
115 size_t i
, j
, n
, align1
, align2
, len
;
116 unsigned char *p1
= buf1
+ page_size
- 512;
117 unsigned char *p2
= buf2
+ page_size
- 512;
120 for (n
= 0; n
< ITERATIONS
; n
++)
122 align1
= random () & 31;
124 align2
= random () & 31;
126 align2
= align1
+ (random () & 24);
127 len
= random () & 511;
132 len
= 510 - j
- (random () & 7);
133 j
= len
+ align1
+ 64;
136 for (i
= 0; i
< j
; i
++)
138 if (i
== len
+ align1
)
142 p1
[i
] = random () & 255;
143 if (i
>= align1
&& i
< len
+ align1
&& !p1
[i
])
144 p1
[i
] = (random () & 127) + 3;
148 FOR_EACH_IMPL (impl
, 1)
150 memset (p2
- 64, '\1', 512 + 64);
151 res
= (unsigned char *) CALL (impl
, (char *) (p2
+ align2
),
152 (char *) (p1
+ align1
));
153 if (res
!= STRCPY_RESULT (p2
+ align2
, len
))
155 error (0, 0, "Iteration %zd - wrong result in function %s (%zd, %zd, %zd) %p != %p",
156 n
, impl
->name
, align1
, align2
, len
, res
,
157 STRCPY_RESULT (p2
+ align2
, len
));
160 for (j
= 0; j
< align2
+ 64; ++j
)
162 if (p2
[j
- 64] != '\1')
164 error (0, 0, "Iteration %zd - garbage before, %s (%zd, %zd, %zd)",
165 n
, impl
->name
, align1
, align2
, len
);
170 for (j
= align2
+ len
+ 1; j
< 512; ++j
)
174 error (0, 0, "Iteration %zd - garbage after, %s (%zd, %zd, %zd)",
175 n
, impl
->name
, align1
, align2
, len
);
180 if (memcmp (p1
+ align1
, p2
+ align2
, len
+ 1))
182 error (0, 0, "Iteration %zd - different strings, %s (%zd, %zd, %zd)",
183 n
, impl
->name
, align1
, align2
, len
);
198 FOR_EACH_IMPL (impl
, 0)
199 printf ("\t%s", impl
->name
);
202 for (i
= 0; i
< 16; ++i
)
204 do_test (0, 0, i
, 127);
205 do_test (0, 0, i
, 255);
206 do_test (0, i
, i
, 127);
207 do_test (i
, 0, i
, 255);
210 for (i
= 1; i
< 8; ++i
)
212 do_test (0, 0, 8 << i
, 127);
213 do_test (8 - i
, 2 * i
, 8 << i
, 127);
216 for (i
= 1; i
< 8; ++i
)
218 do_test (i
, 2 * i
, 8 << i
, 127);
219 do_test (2 * i
, i
, 8 << i
, 255);
220 do_test (i
, i
, 8 << i
, 127);
221 do_test (i
, i
, 8 << i
, 255);
228 #include "../test-skeleton.c"