Changeset 2046
- Timestamp:
- Jun 17, 2005, 7:01:53 AM (20 years ago)
- Location:
- trunk/src/libctests/glibc
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libctests/glibc/Makefile
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r2045 r2046 51 51 ifeq ($(TARGET),bsd) 52 52 SKIPPED := \ 53 argp/tst-argp1.c \ 54 argp/argp-test.c \ 55 \ 56 assert/test-assert-perr.c \ 57 \ 58 crypt/cert.c \ 59 \ 60 iconv/tst-iconv1.c \ 61 iconv/tst-iconv2.c \ 62 iconv/tst-iconv3.c \ 63 iconv/tst-iconv5.c \ 64 \ 65 inet/tst-ether_aton.c \ 66 \ 67 intl/tst-ngettext.c \ 68 \ 53 69 string/test-mempcpy.c \ 54 70 string/test-stpncpy.c \ 55 71 string/tst-bswap.c \ 56 72 string/tst-strfry.c 57 EXCEPTIONS := 73 EXCEPTIONS := \ 74 catgets/test-gencat.c 58 75 _TARGET_OK := ok 59 76 CFLAGS += -I sysdeps/unix/bsd -D__BSD__ … … 618 635 @echo "* SKIPPING : $1" 619 636 @echo "SKIPPED" > $$@ 637 638 _TESTS += $(OUTDIR)/$2.result 639 $(eval _$(TEST) += $(OUTDIR)/$2.result) 620 640 endef 621 641 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/libctests/glibc/crypt/cert.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r2045 r2046 9 9 #include <stdio.h> 10 10 #include <stdlib.h> 11 #ifdef __BSD__ 12 #include <unistd.h> 13 #else 11 14 #include "crypt.h" 15 #endif 12 16 13 17 int totfails = 0; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/libctests/glibc/crypt/md5c-test.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r2045 r2046 1 #ifdef __BSD__ 2 #include <unistd.h> 3 #else 1 4 #include <crypt.h> 5 #endif 2 6 #include <string.h> 3 7 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/libctests/glibc/dirent/opendir-tst1.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r2045 r2046 25 25 #include <string.h> 26 26 #include <unistd.h> 27 #ifdef __BSD__ 28 #include <sys/stat.h> 29 #endif 27 30 28 31 /* Name of the FIFO. */ -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/libctests/glibc/inet/bug-if1.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r2045 r2046 22 22 #include <stdio.h> 23 23 #include <string.h> 24 #ifdef __BSD__ 25 # include <sys/types.h> 26 # include <sys/socket.h> 27 #endif 24 28 #include <net/if.h> 25 29 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/libctests/glibc/inet/htontest.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r2045 r2046 19 19 02111-1307 USA. */ 20 20 21 #ifndef __BSD__ 21 22 #include <endian.h> 23 #endif 22 24 #include <stdio.h> 23 25 #include <sys/types.h> -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/libctests/glibc/inet/test-ifaddrs.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r2045 r2046 22 22 #include <stdlib.h> 23 23 #include <string.h> 24 #ifdef __BSD__ 25 # include <sys/types.h> 26 # include <sys/socket.h> 27 #endif 24 28 #include <ifaddrs.h> 25 29 #include <netinet/in.h> -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/libctests/glibc/inet/test_ifindex.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r2045 r2046 23 23 #include <stdlib.h> 24 24 #include <string.h> 25 #ifdef __BSD__ 26 # include <sys/types.h> 27 # include <sys/socket.h> 28 #endif 25 29 #include <net/if.h> 26 30 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/libctests/glibc/inet/tst-ntoa.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r2045 r2046 1 1 #include <stdio.h> 2 2 #include <string.h> 3 #ifdef __BSD__ 4 # include <sys/types.h> 5 # include <sys/socket.h> 6 #endif 3 7 #include <arpa/inet.h> 4 8 #include <netinet/in.h> -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.