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
9 #define _POSIX_C_SOURCE 200809L
16 #include "stringlib.h"
18 static const struct fun
21 size_t (*fun
)(const char *s
, size_t m
);
27 # if __ARM_FEATURE_SVE
28 F(__strnlen_aarch64_sve
)
35 static int test_status
;
36 #define ERR(...) (test_status=1, printf(__VA_ARGS__))
41 static char sbuf
[LEN
+2*A
];
43 static void *alignup(void *p
)
45 return (void*)(((uintptr_t)p
+ A
-1) & -A
);
48 static void test(const struct fun
*fun
, int align
, int maxlen
, int len
)
50 char *src
= alignup(sbuf
);
51 char *s
= src
+ align
;
53 size_t e
= maxlen
< len
? maxlen
: len
- 1;
55 if (len
> LEN
|| align
>= A
)
58 for (int i
= 0; i
< len
+ A
; i
++)
60 for (int i
= 0; i
< len
- 2; i
++)
64 r
= fun
->fun(s
, maxlen
);
66 ERR("%s(%p) returned %zu\n", fun
->name
, s
, r
);
67 ERR("input: %.*s\n", align
+len
+1, src
);
68 ERR("expected: %d\n", len
);
76 for (int i
=0; funtab
[i
].name
; i
++) {
78 for (int a
= 0; a
< A
; a
++) {
80 for (n
= 1; n
< 100; n
++)
81 for (int maxlen
= 0; maxlen
< 100; maxlen
++)
82 test(funtab
+i
, a
, maxlen
, n
);
83 for (; n
< LEN
; n
*= 2) {
84 test(funtab
+i
, a
, n
*2, n
);
85 test(funtab
+i
, a
, n
, n
);
86 test(funtab
+i
, a
, n
/2, n
);
89 printf("%s %s\n", test_status
? "FAIL" : "PASS", funtab
[i
].name
);