Blame src/functional/string_memset.c

Szabolcs Nagy 27d6fe
#include <string.h>
Szabolcs Nagy 27d6fe
#include <stdlib.h>
Szabolcs Nagy 27d6fe
#include <stdint.h>
Szabolcs Nagy 27d6fe
#include "test.h"
Szabolcs Nagy 27d6fe
Szabolcs Nagy 0b6bb4
#define N 400
Szabolcs Nagy 0b6bb4
static char buf[N];
Szabolcs Nagy 0b6bb4
static char buf2[N];
Szabolcs Nagy 27d6fe
Szabolcs Nagy 27d6fe
static void *(*volatile pmemset)(void *, int, size_t);
Szabolcs Nagy 27d6fe
Szabolcs Nagy 27d6fe
static void *aligned(void *p)
Szabolcs Nagy 27d6fe
{
Szabolcs Nagy 27d6fe
	return (void*)(((uintptr_t)p + 63) & -64U);
Szabolcs Nagy 27d6fe
}
Szabolcs Nagy 27d6fe
Szabolcs Nagy 27d6fe
static void test_align(int align, int len)
Szabolcs Nagy 27d6fe
{
Szabolcs Nagy 0b6bb4
	char *s = aligned(buf+64);
Szabolcs Nagy 0b6bb4
	char *want = aligned(buf2+64);
Szabolcs Nagy 27d6fe
	char *p;
Szabolcs Nagy 27d6fe
	int i;
Szabolcs Nagy 27d6fe
Szabolcs Nagy 0b6bb4
	if (s - buf + align + len > N)
Szabolcs Nagy 27d6fe
		abort();
Szabolcs Nagy 27d6fe
	for (i = 0; i < N; i++)
Szabolcs Nagy 0b6bb4
		buf[i] = buf2[i] = ' ';
Szabolcs Nagy 27d6fe
	for (i = 0; i < len; i++)
Szabolcs Nagy 27d6fe
		want[align+i] = '#';
Szabolcs Nagy 27d6fe
	p = pmemset(s+align, '#', len);
Szabolcs Nagy 27d6fe
	if (p != s+align)
Szabolcs Nagy 27d6fe
		t_error("memset(%p,...) returned %p\n", s+align, p);
Szabolcs Nagy 27d6fe
	for (i = 0; i < N; i++)
Szabolcs Nagy 0b6bb4
		if (buf[i] != buf2[i]) {
Szabolcs Nagy 27d6fe
			t_error("memset(align %d, '#', %d) failed\n", align, len);
Szabolcs Nagy 27d6fe
			t_printf("got : %.*s\n", align+len+1, s);
Szabolcs Nagy 27d6fe
			t_printf("want: %.*s\n", align+len+1, want);
Szabolcs Nagy 27d6fe
			break;
Szabolcs Nagy 27d6fe
		}
Szabolcs Nagy 27d6fe
}
Szabolcs Nagy 27d6fe
Szabolcs Nagy 27d6fe
static void test_value(int c)
Szabolcs Nagy 27d6fe
{
Szabolcs Nagy 27d6fe
	int i;
Szabolcs Nagy 27d6fe
Szabolcs Nagy 27d6fe
	pmemset(buf, c, 10);
Szabolcs Nagy 27d6fe
	for (i = 0; i < 10; i++)
Szabolcs Nagy 27d6fe
		if ((unsigned char)buf[i] != (unsigned char)c) {
Szabolcs Nagy 27d6fe
			t_error("memset(%d) failed: got %d\n", c, buf[i]);
Szabolcs Nagy 27d6fe
			break;
Szabolcs Nagy 27d6fe
		}
Szabolcs Nagy 27d6fe
}
Szabolcs Nagy 27d6fe
Szabolcs Nagy 27d6fe
int main(void)
Szabolcs Nagy 27d6fe
{
Szabolcs Nagy 27d6fe
	int i,j,k;
Szabolcs Nagy 27d6fe
Szabolcs Nagy 27d6fe
	pmemset = memset;
Szabolcs Nagy 27d6fe
Szabolcs Nagy 27d6fe
	for (i = 0; i < 16; i++)
Szabolcs Nagy 0b6bb4
		for (j = 0; j < 200; j++)
Szabolcs Nagy 27d6fe
			test_align(i,j);
Szabolcs Nagy 27d6fe
Szabolcs Nagy 27d6fe
	test_value('c');
Szabolcs Nagy 27d6fe
	test_value(0);
Szabolcs Nagy 27d6fe
	test_value(-1);
Szabolcs Nagy 52786d
	test_value(-5);
Szabolcs Nagy 27d6fe
	test_value(0xab);
Szabolcs Nagy 27d6fe
	return t_status;
Szabolcs Nagy 27d6fe
}