diff options
Diffstat (limited to 'test/stdio')
-rw-r--r-- | test/stdio/64bit.c | 12 | ||||
-rw-r--r-- | test/stdio/Makefile | 8 | ||||
-rw-r--r-- | test/stdio/Makefile.in | 8 | ||||
-rw-r--r-- | test/stdio/fclose-loop.c | 21 | ||||
-rw-r--r-- | test/stdio/lseek_no_lfs.c | 22 | ||||
-rw-r--r-- | test/stdio/scanf_m.c | 27 | ||||
-rw-r--r-- | test/stdio/tst-fmemopen.c | 53 |
7 files changed, 0 insertions, 151 deletions
diff --git a/test/stdio/64bit.c b/test/stdio/64bit.c deleted file mode 100644 index 9b94dd86c..000000000 --- a/test/stdio/64bit.c +++ /dev/null @@ -1,12 +0,0 @@ -#include <stdio.h> - -int main(void) -{ - unsigned long long val = -1; - void *ptr = (void *)-1; - printf("%p\n", ptr); - - sscanf("123456789", "%Lx", &val); - printf("val = %Lx\n", val); - return 0; -} diff --git a/test/stdio/Makefile b/test/stdio/Makefile deleted file mode 100644 index 95b930b9d..000000000 --- a/test/stdio/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -# uClibc stdio tests -# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. - -top_builddir=../../ -top_srcdir=../../ -include ../Rules.mak --include Makefile.in -include ../Test.mak diff --git a/test/stdio/Makefile.in b/test/stdio/Makefile.in deleted file mode 100644 index 14b5f19b9..000000000 --- a/test/stdio/Makefile.in +++ /dev/null @@ -1,8 +0,0 @@ -# uClibc stdio tests -# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. - -DODIFF_64bit := 1 - -ifeq ($(UCLIBC_HAS_GLIBC_CUSTOM_STREAMS),) -TESTS_DISABLED += tst-fmemopen -endif diff --git a/test/stdio/fclose-loop.c b/test/stdio/fclose-loop.c deleted file mode 100644 index fc0cc424a..000000000 --- a/test/stdio/fclose-loop.c +++ /dev/null @@ -1,21 +0,0 @@ -/* From: Denis Vlasenko <vda.linux@googlemail.com> - * With certain combination of .config options fclose() does not - * remove FILE* pointer from _stdio_openlist. As a result, subsequent - * fopen() may allocate new FILE structure exactly in place of one - * freed by previous fclose(), which then makes _stdio_openlist - * circularlt looped. The following program will enter infinite loop - * trying to walk _stdio_openlist in exit(): - */ - -#include <stdlib.h> -#include <stdio.h> - -int main(int argc, char *argv[]) -{ - FILE* fp; - fp = fopen("/dev/null", "r"); - fclose(fp); - fp = fopen("/dev/zero", "r"); - fclose(fp); - return 0; -} diff --git a/test/stdio/lseek_no_lfs.c b/test/stdio/lseek_no_lfs.c deleted file mode 100644 index 54daf6b48..000000000 --- a/test/stdio/lseek_no_lfs.c +++ /dev/null @@ -1,22 +0,0 @@ -#include <stdio.h> -#include <string.h> -#include <errno.h> - -int main(int argc, char *argv[]) -{ - FILE * f = fopen(argv[0], "rb"); - if (!f) - { - printf("Error: Can't open %s, reason: %s\n", argv[0], strerror(errno)); - return 1; - } - - if (fseek(f, (unsigned)4096, (int)SEEK_SET) == -1) - { - printf("Test failed, fseek return fail code. errno=%u (%s)\n", errno, strerror(errno)); - return 1; - } - - fclose(f); - return 0; -} diff --git a/test/stdio/scanf_m.c b/test/stdio/scanf_m.c deleted file mode 100644 index e1dde270d..000000000 --- a/test/stdio/scanf_m.c +++ /dev/null @@ -1,27 +0,0 @@ -#include <stdio.h> -#include <stdlib.h> -#include <string.h> - -int main(void) -{ - const char *buf = "hello world"; - char *ps = NULL, *pc = NULL, *ps2 = NULL; - char s[6], c, s2[5]; - - /* Check that %[...]/%c/%s work. */ - sscanf(buf, "%[a-z] %c %s", s, &c, s2); - /* Check that %m[...]/%mc/%ms work. */ - sscanf(buf, "%m[a-z] %mc %ms", &ps, &pc, &ps2); - - if (strcmp(ps, "hello") != 0 || *pc != 'w' || - strcmp(ps2, "orld") != 0 || - strcmp(s, "hello") != 0 || c != 'w' || - strcmp(s2, "orld") != 0) - return 1; - - free(ps); - free(pc); - free(ps2); - - return 0; -} diff --git a/test/stdio/tst-fmemopen.c b/test/stdio/tst-fmemopen.c deleted file mode 100644 index 384faa1c9..000000000 --- a/test/stdio/tst-fmemopen.c +++ /dev/null @@ -1,53 +0,0 @@ -#include <string.h> -#include <stdio.h> -#include <stdlib.h> - -static char *text_input = "1 23 43"; - -static const char *good_answer = "1 529 1849 "; - - -static int -do_test (void) -{ - FILE *out, *in; - int v, s; - size_t size; - char *ptr; - - in = fmemopen(text_input, strlen(text_input), "r"); - if (in == NULL) { - perror("fmemopen"); - return 1; - } - - out = open_memstream(&ptr, &size); - if (out == NULL) { - perror("open_memstream"); - return 1; - } - - for (;;) { - s = fscanf(in, "%d", &v); - if (s <= 0) - break; - - s = fprintf(out, "%d ", v * v); - if (s == -1) { - puts("fprintf failed"); - exit(1); - } - } - fclose(in); - fclose(out); - - if (size != strlen(good_answer) || strcmp(good_answer, ptr) != 0) { - printf("failed: size=%zu; ptr=%s\n", size, ptr); - exit(1); - } - free(ptr); - exit(0); -} - -#define TEST_FUNCTION do_test () -#include "../test-skeleton.c" |