On Fri, 4 May 2012 18:49:38 +1000, Tony Cook <tony@develop-help.com>
wrote:
> On Fri, May 04, 2012 at 10:12:22AM +0200, H.Merijn Brand wrote:
> > On Thu, 3 May 2012 22:25:34 -0400, Ricardo Signes
> > <perl.p5p@rjbs.manxome.org> wrote:
> >
> > > Linux - seems mostly okay, but I have a bunch of failures from Tux on
> > > OpenSUSE, mostly failing when using ccache, failing on
> > > ../cpan/Socket/t/sockaddr.t
> > >
> > > Tux, what's up? Anybody else having difficulties?
> >
> > Johan has the same FAIL as X:
> >
> > http://pasta.test-smoke.org/240
> >
> > That'd mean the tests FAILed under test and then PASSed under harness
>
> It can mean that they failed with different messages too - eg. if the
> test exits with non-zero, harness and TEST report that differently,
> producing an X.
Running this:
--8<---
#!/pro/bin/perl
use strict;
use warnings;
use Data::Peek;
my %x;
$ENV{TEST_JOBS} = 14;
for (1 .. 2000) {
$x{harness}{$_}++ for grep s/Result:\s*(\w+)\s*[\r\n]*/$1/ =>
`./perl harness ../cpan/Socket/t/sockaddr.t 2>&1`;
$x{TEST} {$_}++ for (grep m/All tests successful/ =>
`./perl TEST ../cpan/Socket/t/sockaddr.t 2>&1`
) ? "PASS" : "FAIL";
(my $x = DDumper \%x) =~ s/[{}=>\s\r\n]+/ /g;
printf " $x\r";
}
DDumper { "../cpan/Socket/t/sockaddr.t" => \%x };
--->8--
returned for 64bitall debugging builds on two different boxes:
{ '../cpan/Socket/t/sockaddr.t' => {
harness => {
PASS => 2000
},
test => {
PASS => 2000
}
}
}
--
H.Merijn Brand http://tux.nl Perl Monger http://amsterdam.pm.org/
using perl5.00307 .. 5.14 porting perl5 on HP-UX, AIX, and openSUSE
http://mirrors.develooper.com/hpux/ http://www.test-smoke.org/
http://qa.perl.org http://www.goldmark.org/jeff/stupid-disclaimers/
Thread Previous
|
Thread Next