On Fri, Jul 03, 2015 at 05:53:53PM -0700, Serguei Trouchelle wrote: > I see this kind of problems in NetBSD smokers: > > http://www.cpantesters.org/cpan/report/e19112ce-219e-11e5-816f-279aaf4b258a > > More at > http://www.cpantesters.org/distro/C/CPAN-SQLite.html#CPAN-SQLite-0.206?grade=3&perlmat=2&patches=2&oncpan=2&distmat=2&perlver=ALL&osname=netbsd&version=0.206 > > Output from '/usr/bin/make test': > > PERL_DL_NONLAZY=1 > /home/njh/perl5/perlbrew/perls/perl-5.14.4/bin/perl > "-MExtUtils::Command::MM" "-MTest::Harness" "-e" "undef > *Test::Harness::Switches; test_harness(0, 'blib/lib', 'blib/arch')" > t/*.t > t/01basic.t .............. ok > t/02drop.t ............... ok > t/00compile.t ............ ok > DBD::SQLite::db prepare failed: no such table: auths at > /home/njh/.cpan/build/CPAN-SQLite-0.206-GPrKpn/blib/lib/CPAN/SQLite/DBI/Search.pm > line 50. > DBD::SQLite::db prepare failed: no such table: auths at > /home/njh/.cpan/build/CPAN-SQLite-0.206-GPrKpn/blib/lib/CPAN/SQLite/DBI/Search.pm > line 50. > # Looks like you planned 2668 tests but ran 2. > # Looks like your test exited with 2 just after 2. > t/04search.t ............. > Dubious, test returned 2 (wstat 512, 0x200) > Failed 2666/2668 subtests > DBD::SQLite::db prepare failed: no such table: auths at > /home/njh/.cpan/build/CPAN-SQLite-0.206-GPrKpn/blib/lib/CPAN/SQLite/DBI/Search.pm > line 50. > DBD::SQLite::db prepare failed: no such table: auths at > /home/njh/.cpan/build/CPAN-SQLite-0.206-GPrKpn/blib/lib/CPAN/SQLite/DBI/Search.pm > line 50. > # Looks like you planned 14 tests but ran 2. > # Looks like your test exited with 2 just after 2. > t/04search_everything.t .. > Dubious, test returned 2 (wstat 512, 0x200) > Failed 12/14 subtests > t/03info.t ............... ok > > Note that tests are run in completely random order: > t/01basic.t > t/02drop.t > t/00compile.t > t/04search.t > t/04search_everything.t > t/03info.t
The tests are being run in parallel because of the j2 in HARNESS_OPTIONS: Environment variables: HARNESS_OPTIONS = c:j2 which can produce this effect. Tony