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/string/bug-strncat1.c | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 test/string/bug-strncat1.c (limited to 'test/string/bug-strncat1.c') diff --git a/test/string/bug-strncat1.c b/test/string/bug-strncat1.c deleted file mode 100644 index f1b5c37c5..000000000 --- a/test/string/bug-strncat1.c +++ /dev/null @@ -1,31 +0,0 @@ -/* Test case by Joseph S. Myers . */ -#undef __USE_STRING_INLINES -#define __USE_STRING_INLINES -#include -#include -#include - -char d[3] = "\0\1\2"; - -int -main (void) -{ - strncat (d, "\5\6", 1); - if (d[0] != '\5') - { - puts ("d[0] != '\\5'"); - exit (1); - } - if (d[1] != '\0') - { - puts ("d[1] != '\\0'"); - exit (1); - } - if (d[2] != '\2') - { - puts ("d[2] != '\\2'"); - exit (1); - } - - return 0; -} -- cgit v1.2.3