Changeset 2088
- Timestamp:
- Jun 27, 2005, 5:04:42 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/libctests/glibc/Makefile ¶
-
Property cvs2svn:cvs-rev
changed from
1.7
to1.8
r2087 r2088 33 33 _TARGET_OK := ok 34 34 CFLAGS += \ 35 -DHAVE_MCHECK_H \ 36 -DHAVE___STRTOD_INTERNAL \ 37 -DHAVE_ASPRINTF \ 38 -DHAVE_GETLINE \ 35 39 -DHAVE_STRNLEN \ 36 40 -DHAVE_STPNCPY \ … … 41 45 -DHAVE_STRNDUP \ 42 46 -DHAVE_MEMPCPY \ 43 -DHAVE_NEWLOCALE 47 -DHAVE_NEWLOCALE \ 48 -DHAVE_64BIT_FILEIO_TYPES \ 49 -DHAVE_SWPRINTF 44 50 endif 45 51 46 52 ifeq ($(TARGET),innoteklibc) 47 53 SKIPPED := \ 54 stdio-common/tst-cookie.c \ 55 stdio-common/tst-fmemopen.c \ 56 stdio-common/tst-fmemopen2.c \ 57 stdio-common/tst-obprintf.c \ 58 stdio-common/tst-perror.c \ 59 stdio-common/tst-popen.c \ 60 stdio-common/tst-printfsz.c \ 61 stdio-common/tst-swprintf.c \ 62 stdio-common/tstgetln.c \ 63 \ 64 stdlib/test-a64l.c \ 65 stdlib/tst-setcontext.c \ 48 66 \ 49 67 string/test-ffs.c \ … … 52 70 string/tst-strfry.c \ 53 71 \ 72 sunrpc/tst-getmyaddr.c \ 73 \ 54 74 time/tst_wcsftime.c \ 55 75 time/tst-ftime_l.c \ … … 67 87 wcsmbs/tst-wcrtomb.c \ 68 88 time/tst-posixtz.c \ 69 time/tst-strftime.c 89 time/tst-strftime.c \ 90 stdlib/tst-bsearch.c \ 91 stdlib/tst-qsort.c \ 92 stdlib/tst-putenv.c \ 93 stdio-common/test-popen.c \ 94 stdio-common/test-vfprintf.c \ 95 stdio-common/tst-fphex.c \ 96 stdio-common/tstscanf.c 97 98 # NOTES: 99 # stdio-common/test-vfprintf.c: File duplication and truncation needs exploring with regards to file position! 100 # stdio-common/tst-fphex.c: We don't implement %a. 101 # stdio-common/tst-sscanf.c: Is doing some thousand separator and internationalization stuff which we don't implement. 102 # stdio-common/tstscanf.c: two cases of sscan working in three different ways depending on glibc, bsd or libc. cool! 70 103 71 104 CFLAGS += -Zomf -g \ … … 101 134 catgets/test-gencat.c 102 135 _TARGET_OK := ok 103 CFLAGS += -I sysdeps/unix/bsd -D__BSD__ 136 CFLAGS += -I sysdeps/unix/bsd -D__BSD__ \ 137 -DHAVE_ASPRINTF \ 138 -DHAVE_SWPRINTF \ 139 -DHAVE_GETLINE 104 140 endif 105 141 … … 473 509 # stdio-common/tst-printf.c 474 510 # stdio-common/tst-printf.sh 475 # stdio-common/tst-unbputc.c511 # stdio-common/tst-unbputc.c 476 512 # stdio-common/tst-unbputc.sh 477 513 … … 646 682 $(OUTDIR)/$2.result: $1 $(OUTDIR)/$(dir $1).dir_created $($(1)_DEPS) 647 683 @echo "########## $1"; \ 648 echo "## BUILDING: $$(CC) $$(CFLAGS) -o $(OUTDIR)/$2.exe $($(1)_CFLAGS) $($(1)_LDFLAGS) $$<"; \649 if $$(CC) $$(CFLAGS) -o $(OUTDIR)/$2.exe $($(1)_CFLAGS) $($(1)_LDFLAGS) $$<; then \650 echo "## RUNNING : LC_ALL=C $($1_ENVS) $(OUTDIR)/$2.exe $($1_ARGS) $(if $($(1)_INPUT), < $($(1)_INPUT),)"; \651 if LC_ALL=C $($1_ENVS) $(OUTDIR)/$2.exe $($1_ARGS) $(if $($(1)_INPUT), < $($(1)_INPUT),); then\684 echo "## BUILDING: $$(CC) $$(CFLAGS) $$(LDFLAGS) -o $(OUTDIR)/$2.exe $($(1)_CFLAGS) $($(1)_LDFLAGS) $$<"; \ 685 if $$(CC) $$(CFLAGS) $$(LDFLAGS) -o $(OUTDIR)/$2.exe $($(1)_CFLAGS) $($(1)_LDFLAGS) $$<; then \ 686 echo "## RUNNING : (cd $$(dir $$@) && LC_ALL=C $($1_ENVS) $(notdir $2).exe $($1_ARGS)) $(if $($(1)_INPUT), < $($(1)_INPUT),)"; \ 687 if (cd $$(dir $$@) && LC_ALL=C $($1_ENVS) $(notdir $2).exe $($1_ARGS)) $(if $($(1)_INPUT), < $($(1)_INPUT),); then\ 652 688 echo OK > $$@; \ 653 689 printf "########## %-26s - SUCCESS\n" "$1"; \ -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.