[NFC][Py Reformat] Added more commits to .git-blame-ignore-revs
[llvm-project.git] / libc / AOR_v20.02 / string / test / strchr.c
blob6076e03809555407406ef4ccc66fccbaa0357fac
1 /*
2 * strchr test.
4 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 * See https://llvm.org/LICENSE.txt for license information.
6 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 */
9 #include <stdint.h>
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <string.h>
13 #include <limits.h>
14 #include "stringlib.h"
16 static const struct fun
18 const char *name;
19 char *(*fun)(const char *s, int c);
20 } funtab[] = {
21 #define F(x) {#x, x},
22 F(strchr)
23 #if __aarch64__
24 F(__strchr_aarch64)
25 F(__strchr_aarch64_mte)
26 # if __ARM_FEATURE_SVE
27 F(__strchr_aarch64_sve)
28 # endif
29 #endif
30 #undef F
31 {0, 0}
34 static int test_status;
35 #define ERR(...) (test_status=1, printf(__VA_ARGS__))
37 #define A 32
38 #define SP 512
39 #define LEN 250000
40 static char sbuf[LEN+2*A];
42 static void *alignup(void *p)
44 return (void*)(((uintptr_t)p + A-1) & -A);
47 static void test(const struct fun *fun, int align, int seekpos, int len)
49 char *src = alignup(sbuf);
50 char *s = src + align;
51 char *f = seekpos != -1 ? s + seekpos : 0;
52 int seekchar = 0x1;
53 void *p;
55 if (len > LEN || seekpos >= len - 1 || align >= A)
56 abort();
57 if (seekchar >= 'a' && seekchar <= 'a' + 23)
58 abort();
60 for (int i = 0; i < len + A; i++)
61 src[i] = '?';
62 for (int i = 0; i < len - 2; i++)
63 s[i] = 'a' + i%23;
64 if (seekpos != -1)
65 s[seekpos] = seekchar;
66 s[len - 1] = '\0';
68 p = fun->fun(s, seekchar);
70 if (p != f) {
71 ERR("%s(%p,0x%02x,%d) returned %p\n", fun->name, s, seekchar, len, p);
72 ERR("expected: %p\n", f);
73 abort();
77 int main()
79 int r = 0;
80 for (int i=0; funtab[i].name; i++) {
81 test_status = 0;
82 for (int a = 0; a < A; a++) {
83 int n;
84 for (n = 1; n < 100; n++) {
85 for (int sp = 0; sp < n - 1; sp++)
86 test(funtab+i, a, sp, n);
87 test(funtab+i, a, -1, n);
89 for (; n < LEN; n *= 2) {
90 test(funtab+i, a, -1, n);
91 test(funtab+i, a, n / 2, n);
94 printf("%s %s\n", test_status ? "FAIL" : "PASS", funtab[i].name);
95 if (test_status)
96 r = -1;
98 return r;