Changeset 2194


Ignore:
Timestamp:
Jul 3, 2005, 9:59:07 AM (20 years ago)
Author:
bird
Message:

libio on libc.

Location:
trunk/src/libctests/glibc
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/libctests/glibc/Makefile

    • Property cvs2svn:cvs-rev changed from 1.16 to 1.17
    r2193 r2194  
    4949        -DHAVE_SWPRINTF \
    5050        -DHAVE_RPC_NETDB_H \
    51         -DHAVE_NL_LANGINFO_EXTENTIONS
     51        -DHAVE_NL_LANGINFO_EXTENTIONS \
     52        -DHAVE_FPUTWS
    5253endif
    5354
     
    6364        io/test-stat.c \
    6465        io/test-stat2.c \
     66        \
     67        libio/bug-ftell.c \
     68        libio/bug-mmap-fflush.c \
     69        libio/bug-rewind.c \
     70        libio/bug-rewind2.c \
     71        libio/bug-ungetwc1.c \
     72        libio/bug-ungetwc2.c \
     73        libio/bug-wfflush.c \
     74        libio/test-fmemopen.c \
     75        libio/tst-ext.c \
     76        libio/tst-fgetws.c \
     77        libio/tst-fopenloc.c \
     78        libio/tst-swscanf.c \
     79        libio/tst-ungetwc1.c \
     80        libio/tst-ungetwc2.c \
     81        libio/tst-widetext.c \
     82        libio/tst_getwc.c \
     83        libio/tst_putwc.c \
     84        libio/tst_swprintf.c \
     85        libio/tst_swscanf.c \
     86        libio/tst_wprintf.c \
     87        libio/tst_wprintf2.c \
     88        libio/tst_wscanf.c \
    6589        \
    6690        login/tst-grantpt.c \
     
    177201        dirent/opendir-tst1.c \
    178202        catgets/test-gencat.c \
    179         math/test-fenv.c
     203        math/test-fenv.c \
     204        libio/bug-fopena+.c     \
     205        libio/tst-sscanf.c
    180206       
    181207# NOTES:       
     
    386412libio/tst_wscanf.c_INPUT = libio/tst_wscanf.input
    387413       
    388 # todo libio/test-freopen.sh
     414libio/test-freopen.c_ARGS = $(ABSOUTDIR)/libio/test-freopen.out
     415libio/test-freopen.c_EXPECT      = libio/test-freopen.expect
     416libio/test-freopen.c_EXPECT_FILE = $(OUTDIR)/libio/test-freopen.out
     417libio/test-freopen.c_EXPECT_TEXT = yes
    389418
    390419LINUXTHREADS := # skipped
  • TabularUnified trunk/src/libctests/glibc/libio/test-freopen.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r2193 r2194  
    5050    }
    5151
     52#ifdef HAVE_FPUTWS
    5253  fputws (L"Hello world (wc)\n", fp);
     54#else
     55  fputs ("Hello world (wc)\n", fp);
     56#endif
    5357
    5458  fclose (fp);
Note: See TracChangeset for help on using the changeset viewer.