X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=344007f2e668984b89a37735a4962c5a2339604f;hb=2f3f9d21d595529c001e99f526df59e899b84f7a;hp=a5bd70a3ed2762d9384c9231cc332a6374bb15f7;hpb=f4086911882bd523b07597f2f001a2786aee2dd0;p=dbsrgits%2FDBIx-Class.git diff --git a/Makefile.PL b/Makefile.PL index a5bd70a..344007f 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -20,7 +20,7 @@ requires 'DBI' => 1.40; requires 'Module::Find' => 0; requires 'Class::Inspector' => 0; requires 'Class::Accessor::Grouped' => 0.05002; -requires 'JSON::Any' => 1.00; +requires 'JSON::Any' => 1.17; requires 'Scope::Guard' => 0.03; requires 'Path::Class' => 0; requires 'List::Util' => 1.19; @@ -33,10 +33,11 @@ test_requires 'DBD::SQLite' => 1.14; test_requires 'Test::Builder' => 0.33; 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 @@ -62,6 +63,84 @@ auto_provides; auto_install; +# Have all prerequisites, check DBD::SQLite sanity +if (! $ENV{DBICTEST_NO_SQLITE_CHECK} ) { + + my $pid = fork(); + if (not defined $pid) { + die "Unable to fork(): $!"; + } + elsif (! $pid) { + + # Win32 does not have real fork()s so a segfault will bring + # everything down. Warn about it. + if ($^O eq 'MSWin32') { + print <<'EOW'; + +###################################################################### +# # +# A short stress-testing of DBD::SQLite will follow. If you have a # +# buggy library this might very well be the last text you will see # +# before the installation silently terminates. If this happens it # +# would mean that you are running a buggy version of DBD::SQLite # +# known to randomly segfault on errors. Even if you have the latest # +# CPAN module version, the actual sqlite3 dynamic library might have # +# been compiled against an older buggy sqlite3 dev library. You are # +# strongly advised to update DBD::SQLite. # +# # +# If this happens to you (this text is the last thing you see), and # +# you just want to install this module without worrying about the # +# tests (which will almost certainly fail) - set the environment # +# variable DBICTEST_NO_SQLITE_CHECK to a true value and try again. # +# # +###################################################################### + +EOW + } + + require DBI; + for (1 .. 100) { + 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 (<write; } - - -