control: tag -1 patch On Sat, Mar 22, 2014 at 9:51 AM, Arno Töll wrote: > severity 731074 important > thanks > > I will downgrade this bug to important for now, as long at is uncertain > if this is a bug in lighttpd or kfreebsd's libc. Either way we need to > have a newer lighttpd in Testing. If you feel like, feel free to upgrade > the severity again, once 1.4.35 hits Testing.
Here is a patch that disables the mod-fastcgi test only on kfreebsd. Best wishes, Mike
description: disable mod-fastcgi test on kfreebsd author: Michael Gilbert <mgilb...@debian.org> Index: lighttpd-1.4.35/tests/run-tests.pl =================================================================== --- lighttpd-1.4.35.orig/tests/run-tests.pl 2014-03-23 06:02:39.000000000 +0000 +++ lighttpd-1.4.35/tests/run-tests.pl 2014-03-23 06:04:40.473881736 +0000 @@ -16,5 +16,12 @@ push @fs, $srcdir.'/'.$f; } } + +# avoid indeterminant test on kfreebsd +use Config; +if (index($Config{'archname'}, 'freebsd') != -1) { + @fs = grep(!/mod-fastcgi.t/, @fs); +} + closedir DIR; runtests (sort @fs);