From 99ef2719fb3d703fe38c4113cd7f5adec516dd3a Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Fri, 28 Oct 2016 20:29:21 +0200 Subject: test: remove test suite The test suite is now a developed in a separate git repository. See here: http://cgit.uclibc-ng.org/cgi/cgit/uclibc-ng-test.git The test suite should be just like every other software compiled with the cross-toolchain. In the past strange problems where found when the test suite got build in the toolchain creation step. --- test/malloc/malloc-standard-alignment.c | 42 --------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 test/malloc/malloc-standard-alignment.c (limited to 'test/malloc/malloc-standard-alignment.c') diff --git a/test/malloc/malloc-standard-alignment.c b/test/malloc/malloc-standard-alignment.c deleted file mode 100644 index 71e5023ae..000000000 --- a/test/malloc/malloc-standard-alignment.c +++ /dev/null @@ -1,42 +0,0 @@ -/* exercise a bug found in malloc-standard when alignment - * values are out of whack and cause a small overflow into - * actual user data. - */ - -#include -#include -#include - -#define ok(p) ((void*)p > (void*)0x1000) -#define x \ - do { \ - printf("%i: phead = %p, phead->link @ %p = %p %s\n", \ - __LINE__, phead, \ - ok(phead) ? &phead->link : 0, \ - ok(phead) ? phead->link : 0, \ - ok(phead) ? phead->link == 0 ? "" : "!!!!!!!!!!!" : ""); \ - if (phead->link != NULL) exit(1); \ - } while (0); - -struct llist_s { - void *data; - struct llist_s *link; -} *phead; - -int main(int argc, char *argv[]) -{ - char *line, *reg; - - setbuf(stdout, NULL); - setbuf(stderr, NULL); - - phead = malloc(sizeof(*phead)); - phead->link = NULL; - -x line = malloc(80); -x line = realloc(line, 2); -x reg = malloc(32); -x free(line); - -x return 0; -} -- cgit v1.2.3