PATH=/usr/bin:/bin Start 2011-10-23T09:05:13 ActivePerl-1200 CPAN-1.9402 Going to read '/home/fly1200/var/cpan/Metadata' Database was generated on Sun, 23 Oct 2011 14:30:43 GMT Running make for C/CO/CORION/DBIx-RunSQL-0.07.tar.gz Checksum for /net/nas/data/cpan/authors/id/C/CO/CORION/DBIx-RunSQL-0.07.tar.gz ok DBIx-RunSQL-0.07/ DBIx-RunSQL-0.07/MANIFEST.skip DBIx-RunSQL-0.07/MANIFEST DBIx-RunSQL-0.07/Changes DBIx-RunSQL-0.07/README.mkdn DBIx-RunSQL-0.07/README DBIx-RunSQL-0.07/Makefile.PL DBIx-RunSQL-0.07/.gitignore DBIx-RunSQL-0.07/META.yml DBIx-RunSQL-0.07/t/ DBIx-RunSQL-0.07/t/99-versions.t DBIx-RunSQL-0.07/t/99-changes.t DBIx-RunSQL-0.07/t/99-todo.t DBIx-RunSQL-0.07/t/99-unix-text.t DBIx-RunSQL-0.07/t/00-use.t DBIx-RunSQL-0.07/t/99-manifest.t DBIx-RunSQL-0.07/t/99-pod.t DBIx-RunSQL-0.07/t/01-force.t DBIx-RunSQL-0.07/lib/ DBIx-RunSQL-0.07/lib/DBIx/ DBIx-RunSQL-0.07/lib/DBIx/RunSQL.pm CPAN.pm: Going to build C/CO/CORION/DBIx-RunSQL-0.07.tar.gz >>> /home/fly1200/ap1200-292396/bin/perl-static Makefile.PL Checking if your kit is complete... Looks good Writing Makefile for DBIx::RunSQL >>> make cp lib/DBIx/RunSQL.pm blib/lib/DBIx/RunSQL.pm Manifying blib/man3/DBIx::RunSQL.3 CORION/DBIx-RunSQL-0.07.tar.gz make -- OK Running make test >>> make test TEST_VERBOSE=1 PERL_DL_NONLAZY=1 /home/fly1200/ap1200-292396/bin/perl-static "-MExtUtils::Command::MM" "-e" "test_harness(1, 'blib/lib', 'blib/arch')" t/*.t t/00-use.t ........ 1..1 ok 1 - use DBIx::RunSQL; ok DBD::SQLite::db do failed: unrecognized token: "#" at /data/fly1200/cpan/build/DBIx-RunSQL-0.07-NcFvDb/blib/lib/DBIx/RunSQL.pm line 178. DBD::SQLite::db do failed: unrecognized token: "#" at /data/fly1200/cpan/build/DBIx-RunSQL-0.07-NcFvDb/blib/lib/DBIx/RunSQL.pm line 178. [SQL ERROR]: #!perl -w use strict; use Test::More tests => 4; use DBIx::RunSQL; my $can_run = eval { require DBD::SQLite; 1 }; if ($can_run) { my $lives = eval { my $test_dbh = DBIx::RunSQL->create( dsn => 'dbi:SQLite:dbname=:memory:', sql => $0, ); 1; }; my $err = $@; ok !$lives, "We die on invalid SQL"; isn't $@, '', "We die with some error message"; $lives = eval { my $test_dbh = DBIx::RunSQL->create( dsn => 'dbi:SQLite:dbname=:memory:', sql => $0, force => 1, ); 1; }; $err = $@; ok $lives, "We can force invalid SQL"; is $@, '', "We don't die with some error message"; } else { SKIP: { skip "SQLite not installed", 4 } } t/01-force.t ...... 1..4 #!perl -w use strict; use Test::More tests => 4; use DBIx::RunSQL; my $can_run = eval { require DBD::SQLite; 1 }; if ($can_run) { my $lives = eval { my $test_dbh = DBIx::RunSQL->create( dsn => 'dbi:SQLite:dbname=:memory:', sql => $0, ); 1; }; my $err = $@; ok !$lives, "We die on invalid SQL"; isn't $@, '', "We die with some error message"; $lives = eval { my $test_dbh = DBIx::RunSQL->create( dsn => 'dbi:SQLite:dbname=:memory:', sql => $0, force => 1, ); 1; }; $err = $@; ok $lives, "We can force invalid SQL"; is $@, '', "We don't die with some error message"; } else { SKIP: { skip "SQLite not installed", 4 } } ok 1 - We die on invalid SQL ok 2 - We die with some error message #!perl -w use strict; use Test::More tests => 4; use DBIx::RunSQL; my $can_run = eval { require DBD::SQLite; 1 }; if ($can_run) { my $lives = eval { my $test_dbh = DBIx::RunSQL->create( dsn => 'dbi:SQLite:dbname=:memory:', sql => $0, ); 1; }; my $err = $@; ok !$lives, "We die on invalid SQL"; isn't $@, '', "We die with some error message"; $lives = eval { my $test_dbh = DBIx::RunSQL->create( dsn => 'dbi:SQLite:dbname=:memory:', sql => $0, force => 1, ); 1; }; $err = $@; ok $lives, "We can force invalid SQL"; is $@, '', "We don't die with some error message"; } else { SKIP: { skip "SQLite not installed", 4 } } ok 3 - We can force invalid SQL ok 4 - We don't die with some error message ok # Checking for version 0.07 t/99-changes.t .... 1..2 ok 1 - We find version 0.07 ok 2 - We find a release date on the same line ok t/99-manifest.t ... 1..9 ok 1 - MANIFEST exists ok 2 - No empty lines in MANIFEST ok 3 - No whitespace-only lines in MANIFEST ok 4 - No trailing whitespace on lines in MANIFEST ok 5 - All files in MANIFEST exist ok 6 - MANIFEST.skip exists ok 7 - No empty lines in MANIFEST.skip ok 8 - No whitespace-only lines in MANIFEST.skip ok 9 - No trailing whitespace on lines in MANIFEST.skip ok t/99-pod.t ........ 1..1 ok 1 - POD test for blib/lib/DBIx/RunSQL.pm ok t/99-todo.t ....... 1..2 ok 1 - Looking for XXXes in blib/lib/DBIx/RunSQL.pm ok 2 - Looking for <<<<|>>>> in blib/lib/DBIx/RunSQL.pm ok t/99-unix-text.t .. 1..1 ok 1 - 'blib/lib/DBIx/RunSQL.pm' contains no windows newlines ok # Checking for $VERSION = '0.07'; t/99-versions.t ... ok 1 - blib/lib/DBIx/RunSQL.pm 1..1 ok All tests successful. Files=8, Tests=21, 0 wallclock secs ( 0.01 usr 0.01 sys + 0.13 cusr 0.02 csys = 0.17 CPU) Result: PASS CORION/DBIx-RunSQL-0.07.tar.gz make test TEST_VERBOSE=1 -- OK Max Maischein <corion@cpan.org> run SQL to create a database schema >>> (cd /home/fly1200/var/cpan/build/DBIx-RunSQL-0.07-NcFvDb && tar cvf - DBIx-RunSQL-0.07.ppd blib) | gzip -c >/home/fly1200/var/REPO/C/CO/CORION/DBIx-RunSQL-0.07.tar.gz DBIx-RunSQL-0.07.ppd blib/ blib/lib/ blib/lib/DBIx/ blib/lib/DBIx/RunSQL.pm blib/man3/ blib/man3/DBIx::RunSQL.3 >>> mv /home/fly1200/var/cpan/build/DBIx-RunSQL-0.07-NcFvDb/DBIx-RunSQL-0.07.ppd /home/fly1200/var/REPO/C/CO/CORION Finished 2011-10-23T09:05:14