blob: 8535686e3a0d32a6f50ada862d628bee6bd43f10 [file] [log] [blame]
/*
* strchr test.
*
* Copyright (c) 2019-2020, Arm Limited.
* SPDX-License-Identifier: MIT
*/
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <limits.h>
#include "stringlib.h"
#include "stringtest.h"
#define F(x) {#x, x},
static const struct fun
{
const char *name;
char *(*fun) (const char *s, int c);
} funtab[] = {
// clang-format off
F(strchr)
#if __aarch64__
F(__strchr_aarch64)
F(__strchr_aarch64_mte)
# if __ARM_FEATURE_SVE
F(__strchr_aarch64_sve)
# endif
#endif
{0, 0}
// clang-format on
};
#undef F
#define ALIGN 32
#define LEN 512
static char sbuf[LEN + 3 * ALIGN];
static void *
alignup (void *p)
{
return (void *) (((uintptr_t) p + ALIGN - 1) & -ALIGN);
}
static void
test (const struct fun *fun, int align, int seekpos, int len)
{
char *src = alignup (sbuf);
char *s = src + align;
char *f = seekpos != -1 ? s + seekpos : 0;
int seekchar = 0x1;
void *p;
if (err_count >= ERR_LIMIT)
return;
if (len > LEN || seekpos >= len || align >= ALIGN)
abort ();
for (int i = 0; src + i < s; i++)
src[i] = (i + len) & 1 ? seekchar : 0;
for (int i = 1; i <= ALIGN; i++)
s[len + i] = (i + len) & 1 ? seekchar : 0;
for (int i = 0; i < len; i++)
s[i] = 'a' + (i & 31);
if (seekpos != -1)
s[seekpos] = seekchar;
if (seekpos != -1 && (len + align) & 1)
s[seekpos + 1] = seekchar;
s[len] = '\0';
p = fun->fun (s, seekchar);
if (p != f)
{
ERR ("%s (%p, 0x%02x) len %d returned %p, expected %p pos %d\n",
fun->name, s, seekchar, len, p, f, seekpos);
quote ("input", s, len);
}
p = fun->fun (s, 0);
if (p != s + len)
{
ERR ("%s (%p, 0x%02x) len %d returned %p, expected %p pos %d\n",
fun->name, s, 0, len, p, f, len);
quote ("input", s, len);
}
}
int
main (void)
{
int r = 0;
for (int i = 0; funtab[i].name; i++)
{
err_count = 0;
for (int a = 0; a < ALIGN; a++)
for (int n = 0; n < LEN; n++)
{
for (int sp = 0; sp < n; sp++)
test (funtab + i, a, sp, n);
test (funtab + i, a, -1, n);
}
printf ("%s %s\n", err_count ? "FAIL" : "PASS", funtab[i].name);
if (err_count)
r = -1;
}
return r;
}