- Timestamp:
- Jul 1, 2005, 6:36:50 AM (20 years ago)
- Location:
- trunk/src/libctests/glibc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libctests/glibc/Makefile
-
Property cvs2svn:cvs-rev
changed from
1.11
to1.12
r2136 r2137 46 46 -DHAVE_NEWLOCALE \ 47 47 -DHAVE_64BIT_FILEIO_TYPES \ 48 -DHAVE_SWPRINTF 48 -DHAVE_SWPRINTF \ 49 -DHAVE_RPC_NETDB_H 49 50 endif 50 51 51 52 ifeq ($(TARGET),innoteklibc) 52 53 SKIPPED := \ 54 \ 55 misc/tst-efgcvt.c \ 56 misc/tst-mntent.c \ 57 \ 58 nss/bug-erange.c \ 59 \ 53 60 posix/bug-ga1.c \ 54 61 posix/bug-ga2.c \ … … 138 145 posix/tst-dir.c \ 139 146 posix/tst-fnmatch.c \ 140 posix/tst-pcre.c 147 posix/tst-pcre.c \ 148 misc/tst-tsearch.c 141 149 142 150 # NOTES: … … 148 156 # posix/testfnm.c: This looks bad! 149 157 # posix/tst-fnmatch.c: This too! 158 # misc/tst-tsearch.c: This really needs looking at on BSD. 150 159 151 160 CFLAGS += -Zomf -g -I sysdeps/os2 \ -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/libctests/glibc/misc/tst-tsearch.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r2136 r2137 151 151 #endif 152 152 { 153 fputs ("Depth too large during tree walk.\n", stdout); 153 printf ("Depth too large during tree walk. max_depth=%d expected_count=%d (%d)\n", 154 max_depth, expected_count, log (expected_count) * 2 + 2); 154 155 error = 1; 155 156 } -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/libctests/glibc/nss/test-netdb.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r2136 r2137 32 32 33 33 #include <netdb.h> 34 #ifdef HAVE_RPC_NETDB_H 34 35 #include <rpc/netdb.h> 36 #endif 35 37 #include <stdio.h> 36 38 #include <stdlib.h> … … 302 304 303 305 306 #ifdef HAVE_RPC_NETDB_H 304 307 static void 305 308 output_rpcent (const char *call, struct rpcent *rptr) … … 338 341 endrpcent (); 339 342 } 340 343 #endif 344 345 #if 0 /* not very useful when you don't have this function... */ 341 346 /* Override /etc/nsswitch.conf for this program. This is mainly 342 347 useful for developers. */ … … 356 361 __nss_configure_lookup ("services", dbname); 357 362 } 358 363 #endif 359 364 360 365 int … … 368 373 test_network (); 369 374 test_protocols (); 375 #ifdef HAVE_RPC_NETDB_H 370 376 test_rpc (); 377 #endif 371 378 test_services (); 372 379 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.