2.9
[glibc/nacl-glibc.git] / string / test-strcpy.c
blob6a2ea2510e3b5d31174d588a8461ccbf26220c55
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
19 02111-1307 USA. */
21 #ifndef STRCPY_RESULT
22 # define STRCPY_RESULT(dst, len) dst
23 # define TEST_MAIN
24 # include "test-string.h"
26 char *simple_strcpy (char *, const char *);
28 IMPL (simple_strcpy, 0)
29 IMPL (strcpy, 1)
31 char *
32 simple_strcpy (char *dst, const char *src)
34 char *ret = dst;
35 while ((*dst++ = *src++) != '\0');
36 return ret;
38 #endif
40 typedef char *(*proto_t) (char *, const char *);
42 static void
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));
50 ret = 1;
51 return;
54 if (strcmp (dst, src) != 0)
56 error (0, 0, "Wrong result in function %s dst \"%s\" src \"%s\"",
57 impl->name, dst, src);
58 ret = 1;
59 return;
62 if (HP_TIMING_AVAIL)
64 hp_timing_t start __attribute ((unused));
65 hp_timing_t stop __attribute ((unused));;
66 hp_timing_t best_time = ~ (hp_timing_t) 0;
67 size_t i;
69 for (i = 0; i < 32; ++i)
71 HP_TIMING_NOW (start);
72 CALL (impl, dst, src);
73 HP_TIMING_NOW (stop);
74 HP_TIMING_BEST (best_time, start, stop);
77 printf ("\t%zd", (size_t) best_time);
81 static void
82 do_test (size_t align1, size_t align2, size_t len, int max_char)
84 size_t i;
85 char *s1, *s2;
87 align1 &= 7;
88 if (align1 + len >= page_size)
89 return;
91 align2 &= 7;
92 if (align2 + len >= page_size)
93 return;
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);
100 s1[len] = 0;
102 if (HP_TIMING_AVAIL)
103 printf ("Length %4zd, alignment %2zd/%2zd:", len, align1, align2);
105 FOR_EACH_IMPL (impl, 0)
106 do_one_test (impl, s2, s1, len);
108 if (HP_TIMING_AVAIL)
109 putchar ('\n');
112 static void
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;
118 unsigned char *res;
120 for (n = 0; n < ITERATIONS; n++)
122 align1 = random () & 31;
123 if (random () & 1)
124 align2 = random () & 31;
125 else
126 align2 = align1 + (random () & 24);
127 len = random () & 511;
128 j = align1;
129 if (align2 > j)
130 j = align2;
131 if (len + j >= 511)
132 len = 510 - j - (random () & 7);
133 j = len + align1 + 64;
134 if (j > 512)
135 j = 512;
136 for (i = 0; i < j; i++)
138 if (i == len + align1)
139 p1[i] = 0;
140 else
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));
158 ret = 1;
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);
166 ret = 1;
167 break;
170 for (j = align2 + len + 1; j < 512; ++j)
172 if (p2[j] != '\1')
174 error (0, 0, "Iteration %zd - garbage after, %s (%zd, %zd, %zd)",
175 n, impl->name, align1, align2, len);
176 ret = 1;
177 break;
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);
184 ret = 1;
191 test_main (void)
193 size_t i;
195 test_init ();
197 printf ("%23s", "");
198 FOR_EACH_IMPL (impl, 0)
199 printf ("\t%s", impl->name);
200 putchar ('\n');
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);
224 do_random_tests ();
225 return ret;
228 #include "../test-skeleton.c"