in reply to Working on a new DBD::SQLite release
'make test' fails when DBI_DSN is not DBD::SQLite:
In case 1. a fix would be simply
In case 2. a fix could be$ diff t/lib.pl.cp t/lib.pl 36,37c36 < $test_dsn = $ENV{'DBI_DSN'} < || "DBI:$dbdriver:dbname=$table_dir"; --- > $test_dsn = "DBI:$dbdriver:dbname=$table_dir";
$ diff t/lib.pl.cp t/lib.pl 36c36 < $test_dsn = $ENV{'DBI_DSN'} --- > $test_dsn = $ENV{'DBI_DSN'} && $ENV{'DBI_DSN'} =~ m/^DBI:$mdriv +er/
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Working on a new DBD::SQLite release
by Corion (Patriarch) on Apr 03, 2009 at 14:32 UTC | |
by andreas1234567 (Vicar) on Apr 03, 2009 at 19:45 UTC |