From a334319f6530564d22e775935d9c91663623a1b4 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 22 Dec 2004 20:10:10 +0000 Subject: (CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4. --- libio/tst-memstream1.c | 89 -------------------------------------------------- 1 file changed, 89 deletions(-) delete mode 100644 libio/tst-memstream1.c (limited to 'libio/tst-memstream1.c') diff --git a/libio/tst-memstream1.c b/libio/tst-memstream1.c deleted file mode 100644 index d18f5cc22a..0000000000 --- a/libio/tst-memstream1.c +++ /dev/null @@ -1,89 +0,0 @@ -#include -#include - - -#ifndef CHAR_T -# define CHAR_T char -# define W(o) o -# define OPEN_MEMSTREAM open_memstream -#endif - -#define S(s) S1 (s) -#define S1(s) #s - - -static void -mcheck_abort (enum mcheck_status ev) -{ - printf ("mecheck failed with status %d\n", (int) ev); - exit (1); -} - - -static int -do_test (void) -{ - mcheck_pedantic (mcheck_abort); - - CHAR_T *buf = (CHAR_T *) 1l; - size_t len = 12345; - FILE *fp = OPEN_MEMSTREAM (&buf, &len); - if (fp == NULL) - { - printf ("%s failed\n", S(OPEN_MEMSTREAM)); - return 1; - } - - if (fflush (fp) != 0) - { - puts ("fflush failed"); - return 1; - } - - if (len != 0) - { - puts ("string after no write not empty"); - return 1; - } - if (buf == (CHAR_T *) 1l) - { - puts ("buf not updated"); - return 1; - } - if (buf[0] != W('\0')) - { - puts ("buf[0] != 0"); - return 1; - } - - buf = (CHAR_T *) 1l; - len = 12345; - if (fclose (fp) != 0) - { - puts ("fclose failed"); - return 1; - } - - if (len != 0) - { - puts ("string after close with no write not empty"); - return 1; - } - if (buf == (CHAR_T *) 1l) - { - puts ("buf not updated"); - return 1; - } - if (buf[0] != W('\0')) - { - puts ("buf[0] != 0"); - return 1; - } - - free (buf); - - return 0; -} - -#define TEST_FUNCTION do_test () -#include "../test-skeleton.c" -- cgit v1.2.3