Changeset 2116
- Timestamp:
- Jun 30, 2005, 5:16:59 AM (20 years ago)
- Location:
- trunk/src/libctests/glibc
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libctests/glibc/Makefile
-
Property cvs2svn:cvs-rev
changed from
1.9
to1.10
r2115 r2116 52 52 ifeq ($(TARGET),innoteklibc) 53 53 SKIPPED := \ 54 posix/bug-ga1.c \ 55 posix/bug-ga2.c \ 56 posix/test-vfork.c \ 57 \ 58 pwd/tst-getpw.c \ 59 \ 54 60 stdio-common/tst-cookie.c \ 55 61 stdio-common/tst-fmemopen.c \ … … 88 94 time/tst-posixtz.c \ 89 95 time/tst-strftime.c \ 90 stdlib/tst-bsearch.c \91 stdlib/tst-qsort.c \92 96 stdlib/tst-putenv.c \ 93 97 stdio-common/test-popen.c \ 94 98 stdio-common/test-vfprintf.c \ 95 99 stdio-common/tst-fphex.c \ 96 stdio-common/tstscanf.c 100 stdio-common/tstscanf.c \ 101 resolv/tst-aton.c \ 102 posix/bug-glob1.c \ 103 posix/bug-glob2.c 97 104 98 105 # NOTES: … … 448 455 posix/tst-pcre.c_ARGS = posix/PCRE.tests 449 456 posix/tst-boost.c_ARGS = posix/BOOST.tests 450 posix/bug-glob1.c_ARGS = " $(OBJDIR)/posix/"451 posix/tst-execvp3.c_ARGS = --test-dir=" $(OBJDIR)/posix/"457 posix/bug-glob1.c_ARGS = "." 458 posix/tst-execvp3.c_ARGS = --test-dir="." 452 459 453 460 … … 457 464 RESOLV := \ 458 465 resolv/tst-aton.c \ 459 resolv/tst-leaks.c 466 resolv/tst-leaks.c \ 467 resolv/tst-leaks2.c 468 ifeq ($(TARGET),glibc) 460 469 resolv/tst-leaks.c_LDFLAGS = -lresolv 470 resolv/tst-leaks2.c_LDFLAGS = -lresolv 471 endif 461 472 462 473 RT := # todo -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/libctests/glibc/posix/bug-glob2.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r2115 r2116 23 23 #include <dirent.h> 24 24 #include <glob.h> 25 #ifdef HAVE_MCHECK_H 25 26 #include <mcheck.h> 27 #endif 26 28 #include <stdlib.h> 27 29 #include <stdio.h> … … 268 270 do_test (void) 269 271 { 272 #ifdef HAVE_MCHECK_H 270 273 mtrace (); 274 #endif 271 275 272 276 glob_t gl; … … 278 282 { 279 283 puts ("glob did not fail with GLOB_ABORTED"); 280 exit (EXIT_FAILURE); 284 exit (EXIT_FAILURE); 281 285 } 282 286 … … 290 294 { 291 295 puts ("glob did not fail with GLOB_NOMATCH"); 292 exit (EXIT_FAILURE); 296 exit (EXIT_FAILURE); 293 297 } 294 298 295 299 globfree (&gl); 296 300 301 #ifdef HAVE_MCHECK_H 297 302 muntrace (); 303 #endif 298 304 299 305 return 0; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/libctests/glibc/posix/bug-regex1.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r2115 r2116 18 18 19 19 setlocale (LC_ALL, "de_DE.ISO-8859-1"); 20 #ifdef HAVE_FWIDE 20 21 fwide (stdout, -1); 21 22 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/libctests/glibc/resolv/tst-leaks.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r2115 r2116 21 21 #include <arpa/nameser.h> 22 22 #include <resolv.h> 23 #ifdef HAVE_MCHECK_H 23 24 #include <mcheck.h> 25 #endif 24 26 25 27 /* Prototype for our test function. */ … … 35 37 unsigned char buf[256]; 36 38 39 #ifdef HAVE_MCHECK_H 37 40 mtrace(); 41 #endif 38 42 39 43 /* This will allocate some memory, which should be automatically -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/libctests/glibc/resolv/tst-leaks2.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r2115 r2116 20 20 #undef gethostbyname 21 21 22 #ifdef HAVE_MCHECK_H 22 23 #include <mcheck.h> 24 #endif 23 25 #include <netdb.h> 24 26 #include <resolv.h> … … 27 29 do_test (void) 28 30 { 31 #ifdef HAVE_MCHECK_H 29 32 mtrace (); 33 #endif 30 34 for (int i = 0; i < 20; ++i) 31 35 { -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.