X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=ab1aec32744212cd6fdc99ff95ef6055098120e5;hb=50891152d0b24649bfd67bdba97feec86b11c064;hp=aa7cf003cb54ecc81f8107426384e19495beb1bf;hpb=100dd0a893b1dfb11bd51bf58b681d809279955f;p=dbsrgits%2FDBIx-Class.git diff --git a/Makefile.PL b/Makefile.PL index aa7cf00..ab1aec3 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -29,15 +29,15 @@ requires 'Sub::Name' => 0.04; # Perl 5.8.0 doesn't have utf8::is_utf8() requires 'Encode' => 0 if ($] <= 5.008000); -test_requires 'DBD::SQLite' => 1.13; +test_requires 'DBD::SQLite' => 1.14; test_requires 'Test::Builder' => 0.33; -test_requires 'Test::Warn' => 0.08; -test_requires 'Test::NoWarnings' => 0.08; +test_requires 'Test::Warn' => 0.11; test_requires 'Test::Exception' => 0; +test_requires 'Test::Deep' => 0; install_script 'script/dbicadmin'; -tests "t/*.t t/*/*.t"; +tests_recursive 't'; # re-build README and require CDBI modules for testing if we're in a checkout @@ -63,6 +63,56 @@ auto_provides; auto_install; +# Have all prerequisites, check DBD::SQLite sanity +{ + my $pid = fork(); + if (not defined $pid) { + die "Unable to fork(): $!"; + } + elsif (! $pid) { + require DBI; + for (1 .. 10) { + my $dbh; + $dbh = DBI->connect ('dbi:SQLite::memory:', undef, undef, { + AutoCommit => 1, + RaiseError => 0, + PrintError => 0, + }) + or die "Unable to connect to database: $@"; + $dbh->do ('CREATE TABLE name_with_no_columns'); # a subtle syntax error + $dbh->do ('COMMIT'); # followed by commit + $dbh->disconnect; + } + + exit 0; + } + else { + wait(); + my $sig = $? & 127; + if ($sig == 11) { + warn (<