Author: ps-guest Date: 2013-07-14 18:46:05 +0000 (Sun, 14 Jul 2013) New Revision: 5665
Modified: glibc-package/trunk/debian/changelog glibc-package/trunk/debian/patches/kfreebsd/local-sysdeps.diff glibc-package/trunk/debian/testsuite-checking/expected-results-i486-kfreebsd-gnu-libc glibc-package/trunk/debian/testsuite-checking/expected-results-i686-kfreebsd-gnu-i386 glibc-package/trunk/debian/testsuite-checking/expected-results-i686-kfreebsd-gnu-i686 glibc-package/trunk/debian/testsuite-checking/expected-results-x86_64-kfreebsd-gnu-libc Log: kfreebsd/local-sysdeps.diff: update to revision 4748 (from glibc-bsd). update testsuite-checking/expected-results-*-kfreebsd-gnu-* by fbtl tests that are known to fail. Modified: glibc-package/trunk/debian/changelog =================================================================== --- glibc-package/trunk/debian/changelog 2013-07-12 15:45:54 UTC (rev 5664) +++ glibc-package/trunk/debian/changelog 2013-07-14 18:46:05 UTC (rev 5665) @@ -14,7 +14,9 @@ into kfreebsd/local-nscd-no-sockcloexec.diff and kfreebsd/local-linuxthreads-tlsdesc.diff * add kfreebsd/local-fbtl.diff and kfreebsd/local-fbtl-depends.diff - * kfreebsd/local-sysdeps.diff: update to revision 4739 (from glibc-bsd). + * kfreebsd/local-sysdeps.diff: update to revision 4748 (from glibc-bsd). + * update testsuite-checking/expected-results-*-kfreebsd-gnu-* + by fbtl tests that are known to fail. -- Aurelien Jarno <aure...@debian.org> Sun, 30 Jun 2013 01:45:35 +0200 Modified: glibc-package/trunk/debian/patches/kfreebsd/local-sysdeps.diff =================================================================== --- glibc-package/trunk/debian/patches/kfreebsd/local-sysdeps.diff 2013-07-12 15:45:54 UTC (rev 5664) +++ glibc-package/trunk/debian/patches/kfreebsd/local-sysdeps.diff 2013-07-14 18:46:05 UTC (rev 5665) @@ -7598,7 +7598,7 @@ +strong_alias (__clock_getcpuclockid, clock_getcpuclockid) --- /dev/null +++ b/ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fbtl/clock_getres.c -@@ -0,0 +1,42 @@ +@@ -0,0 +1,60 @@ +/* Copyright (C) 2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + @@ -7627,6 +7627,9 @@ +int __syscall_clock_getres(clockid_t clock_id, struct timespec *tp); +libc_hidden_proto (__syscall_clock_getres) + ++int __syscall_clock_gettime(clockid_t clock_id, struct timespec *tp); ++libc_hidden_proto (__syscall_clock_gettime) ++ +/* Get resolution of clock. */ +int +__clock_getres (clockid_t clock_id, struct timespec *tp) @@ -7637,7 +7640,22 @@ + CLOCK_THREAD_CPUTIME_ID and related timers + + for now just pass it to kernel -+ */ ++ */ ++ /* the negative clock_id means a CPU-timer, the resolution is same for all of them ++ the kernel returns resolution regardless whether the timer is accessible, ++ but POSIX/testsuite expects EINVAL ++ */ ++ ++ if (clock_id < 0) ++ { ++ int rv; ++ /* we reuse user provided struct timespec */ ++ rv = INLINE_SYSCALL (clock_gettime, 2, clock_id, tp); ++ if (rv != 0) ++ return rv; ++ /* valid, now really get the resolution */ ++ } ++ + return INLINE_SYSCALL (clock_getres, 2, clock_id, tp); +} +strong_alias (__clock_getres, clock_getres) Modified: glibc-package/trunk/debian/testsuite-checking/expected-results-i486-kfreebsd-gnu-libc =================================================================== --- glibc-package/trunk/debian/testsuite-checking/expected-results-i486-kfreebsd-gnu-libc 2013-07-12 15:45:54 UTC (rev 5664) +++ glibc-package/trunk/debian/testsuite-checking/expected-results-i486-kfreebsd-gnu-libc 2013-07-14 18:46:05 UTC (rev 5665) @@ -12,8 +12,6 @@ tst-backtrace4.out, Error 1 tst-backtrace5.out, Error 1 tst-backtrace6.out, Error 1 -tst-cputimer1.out, Error 1 -tst-cputimer2.out, Error 1 tst-longjmp_chk.out, Error 1 tst-mknodat.out, Error 1 tst-renameat.out, Error 1 @@ -21,3 +19,57 @@ tst-timer4.out, Error 1 tst-timer5.out, Error 1 tst-waitid.out, Error 1 +# +# needs newer kernel - see #716746 +# +tst-cpuclock1.out, Error 1 +tst-cpuclock2.out, Error 1 +tst-cputimer1.out, Error 1 +tst-cputimer2.out, Error 1 +tst-cputimer3.out, Error 1 +# +# fbtl, mainly unsupported PP, PI, ROBUST mutexes +# +tst-attr2.out, Error 1 +tst-attr3, Error 1 +tst-cancel24-static.out, Error 1 +tst-cancel7.out, Error 1 +tst-cancelx7.out, Error 1 +tst-cond-except, Error 1 +tst-cond24, Error 1 +tst-cond25, Error 1 +tst-default-attr, Error 1 +tst-getpid1.o, Error 1 +tst-getpid2.o, Error 1 +tst-mutexpi1, Error 1 +tst-mutexpi2, Error 1 +tst-mutexpi3, Error 1 +tst-mutexpi4, Error 1 +tst-mutexpi5, Error 1 +tst-mutexpi5a, Error 1 +tst-mutexpi6, Error 1 +tst-mutexpi7, Error 1 +tst-mutexpi7a, Error 1 +tst-mutexpi8, Error 1 +tst-mutexpi8-static, Error 1 +tst-mutexpi9, Error 1 +tst-pthread-attr-affinity, Error 1 +tst-robust1.o, Error 1 +tst-robust2.o, Error 1 +tst-robust3.o, Error 1 +tst-robust4.o, Error 1 +tst-robust5.o, Error 1 +tst-robust6.o, Error 1 +tst-robust7.o, Error 1 +tst-robust8.o, Error 1 +tst-robust9.o, Error 1 +tst-robustpi1.o, Error 1 +tst-robustpi2.o, Error 1 +tst-robustpi3.o, Error 1 +tst-robustpi4.o, Error 1 +tst-robustpi5.o, Error 1 +tst-robustpi6.o, Error 1 +tst-robustpi7.o, Error 1 +tst-robustpi8.o, Error 1 +tst-robustpi9.o, Error 1 +tst-tls6.out, Error 1 Modified: glibc-package/trunk/debian/testsuite-checking/expected-results-i686-kfreebsd-gnu-i386 =================================================================== --- glibc-package/trunk/debian/testsuite-checking/expected-results-i686-kfreebsd-gnu-i386 2013-07-12 15:45:54 UTC (rev 5664) +++ glibc-package/trunk/debian/testsuite-checking/expected-results-i686-kfreebsd-gnu-i386 2013-07-14 18:46:05 UTC (rev 5665) @@ -14,8 +14,6 @@ tst-backtrace4.out, Error 1 tst-backtrace5.out, Error 1 tst-backtrace6.out, Error 1 -tst-cputimer1.out, Error 1 -tst-cputimer2.out, Error 1 tst-longjmp_chk.out, Error 1 tst-mknodat.out, Error 1 tst-renameat.out, Error 1 @@ -23,3 +21,57 @@ tst-timer4.out, Error 1 tst-timer5.out, Error 1 tst-waitid.out, Error 1 +# +# needs newer kernel - see #716746 +# +tst-cpuclock1.out, Error 1 +tst-cpuclock2.out, Error 1 +tst-cputimer1.out, Error 1 +tst-cputimer2.out, Error 1 +tst-cputimer3.out, Error 1 +# +# fbtl, mainly unsupported PP, PI, ROBUST mutexes +# +tst-attr2.out, Error 1 +tst-attr3, Error 1 +tst-cancel24-static.out, Error 1 +tst-cancel7.out, Error 1 +tst-cancelx7.out, Error 1 +tst-cond-except, Error 1 +tst-cond24, Error 1 +tst-cond25, Error 1 +tst-default-attr, Error 1 +tst-getpid1.o, Error 1 +tst-getpid2.o, Error 1 +tst-mutexpi1, Error 1 +tst-mutexpi2, Error 1 +tst-mutexpi3, Error 1 +tst-mutexpi4, Error 1 +tst-mutexpi5, Error 1 +tst-mutexpi5a, Error 1 +tst-mutexpi6, Error 1 +tst-mutexpi7, Error 1 +tst-mutexpi7a, Error 1 +tst-mutexpi8, Error 1 +tst-mutexpi8-static, Error 1 +tst-mutexpi9, Error 1 +tst-pthread-attr-affinity, Error 1 +tst-robust1.o, Error 1 +tst-robust2.o, Error 1 +tst-robust3.o, Error 1 +tst-robust4.o, Error 1 +tst-robust5.o, Error 1 +tst-robust6.o, Error 1 +tst-robust7.o, Error 1 +tst-robust8.o, Error 1 +tst-robust9.o, Error 1 +tst-robustpi1.o, Error 1 +tst-robustpi2.o, Error 1 +tst-robustpi3.o, Error 1 +tst-robustpi4.o, Error 1 +tst-robustpi5.o, Error 1 +tst-robustpi6.o, Error 1 +tst-robustpi7.o, Error 1 +tst-robustpi8.o, Error 1 +tst-robustpi9.o, Error 1 +tst-tls6.out, Error 1 Modified: glibc-package/trunk/debian/testsuite-checking/expected-results-i686-kfreebsd-gnu-i686 =================================================================== --- glibc-package/trunk/debian/testsuite-checking/expected-results-i686-kfreebsd-gnu-i686 2013-07-12 15:45:54 UTC (rev 5664) +++ glibc-package/trunk/debian/testsuite-checking/expected-results-i686-kfreebsd-gnu-i686 2013-07-14 18:46:05 UTC (rev 5665) @@ -12,8 +12,6 @@ tst-backtrace4.out, Error 1 tst-backtrace5.out, Error 1 tst-backtrace6.out, Error 1 -tst-cputimer1.out, Error 1 -tst-cputimer2.out, Error 1 tst-longjmp_chk.out, Error 1 tst-mknodat.out, Error 1 tst-renameat.out, Error 1 @@ -21,3 +19,57 @@ tst-timer4.out, Error 1 tst-timer5.out, Error 1 tst-waitid.out, Error 1 +# +# needs newer kernel - see #716746 +# +tst-cpuclock1.out, Error 1 +tst-cpuclock2.out, Error 1 +tst-cputimer1.out, Error 1 +tst-cputimer2.out, Error 1 +tst-cputimer3.out, Error 1 +# +# fbtl, mainly unsupported PP, PI, ROBUST mutexes +# +tst-attr2.out, Error 1 +tst-attr3, Error 1 +tst-cancel24-static.out, Error 1 +tst-cancel7.out, Error 1 +tst-cancelx7.out, Error 1 +tst-cond-except, Error 1 +tst-cond24, Error 1 +tst-cond25, Error 1 +tst-default-attr, Error 1 +tst-getpid1.o, Error 1 +tst-getpid2.o, Error 1 +tst-mutexpi1, Error 1 +tst-mutexpi2, Error 1 +tst-mutexpi3, Error 1 +tst-mutexpi4, Error 1 +tst-mutexpi5, Error 1 +tst-mutexpi5a, Error 1 +tst-mutexpi6, Error 1 +tst-mutexpi7, Error 1 +tst-mutexpi7a, Error 1 +tst-mutexpi8, Error 1 +tst-mutexpi8-static, Error 1 +tst-mutexpi9, Error 1 +tst-pthread-attr-affinity, Error 1 +tst-robust1.o, Error 1 +tst-robust2.o, Error 1 +tst-robust3.o, Error 1 +tst-robust4.o, Error 1 +tst-robust5.o, Error 1 +tst-robust6.o, Error 1 +tst-robust7.o, Error 1 +tst-robust8.o, Error 1 +tst-robust9.o, Error 1 +tst-robustpi1.o, Error 1 +tst-robustpi2.o, Error 1 +tst-robustpi3.o, Error 1 +tst-robustpi4.o, Error 1 +tst-robustpi5.o, Error 1 +tst-robustpi6.o, Error 1 +tst-robustpi7.o, Error 1 +tst-robustpi8.o, Error 1 +tst-robustpi9.o, Error 1 +tst-tls6.out, Error 1 Modified: glibc-package/trunk/debian/testsuite-checking/expected-results-x86_64-kfreebsd-gnu-libc =================================================================== --- glibc-package/trunk/debian/testsuite-checking/expected-results-x86_64-kfreebsd-gnu-libc 2013-07-12 15:45:54 UTC (rev 5664) +++ glibc-package/trunk/debian/testsuite-checking/expected-results-x86_64-kfreebsd-gnu-libc 2013-07-14 18:46:05 UTC (rev 5665) @@ -12,8 +12,6 @@ tst-backtrace4.out, Error 1 tst-backtrace5.out, Error 1 tst-backtrace6.out, Error 1 -tst-cputimer1.out, Error 1 -tst-cputimer2.out, Error 1 tst-longjmp_chk.out, Error 1 tst-mknodat.out, Error 1 tst-renameat.out, Error 1 @@ -22,3 +20,57 @@ tst-timer5.out, Error 1 tst-waitid.out, Error 1 tst-writev.out, Error 1 +# +# needs newer kernel - see #716746 +# +tst-cpuclock1.out, Error 1 +tst-cpuclock2.out, Error 1 +tst-cputimer1.out, Error 1 +tst-cputimer2.out, Error 1 +tst-cputimer3.out, Error 1 +# +# fbtl, mainly unsupported PP, PI, ROBUST mutexes +# +tst-attr2.out, Error 1 +tst-attr3, Error 1 +tst-cancel24-static.out, Error 1 +tst-cancel7.out, Error 1 +tst-cancelx7.out, Error 1 +tst-cond-except, Error 1 +tst-cond24, Error 1 +tst-cond25, Error 1 +tst-default-attr, Error 1 +tst-getpid1.o, Error 1 +tst-getpid2.o, Error 1 +tst-mutexpi1, Error 1 +tst-mutexpi2, Error 1 +tst-mutexpi3, Error 1 +tst-mutexpi4, Error 1 +tst-mutexpi5, Error 1 +tst-mutexpi5a, Error 1 +tst-mutexpi6, Error 1 +tst-mutexpi7, Error 1 +tst-mutexpi7a, Error 1 +tst-mutexpi8, Error 1 +tst-mutexpi8-static, Error 1 +tst-mutexpi9, Error 1 +tst-pthread-attr-affinity, Error 1 +tst-robust1.o, Error 1 +tst-robust2.o, Error 1 +tst-robust3.o, Error 1 +tst-robust4.o, Error 1 +tst-robust5.o, Error 1 +tst-robust6.o, Error 1 +tst-robust7.o, Error 1 +tst-robust8.o, Error 1 +tst-robust9.o, Error 1 +tst-robustpi1.o, Error 1 +tst-robustpi2.o, Error 1 +tst-robustpi3.o, Error 1 +tst-robustpi4.o, Error 1 +tst-robustpi5.o, Error 1 +tst-robustpi6.o, Error 1 +tst-robustpi7.o, Error 1 +tst-robustpi8.o, Error 1 +tst-robustpi9.o, Error 1 +tst-tls6.out, Error 1 -- To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1uyrj7-0004aa...@vasks.debian.org