X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fzzzzzzz_sqlite_deadlock.t;h=a049f222202e87e86ade2f05e6bf1b745ecc8848;hb=d096e13f26c08593a9ba497d562026beffb4f85d;hp=268fdaac5b8eb0c6cdaacb5985685aa7f54127af;hpb=48d2c1ea89b1346f1a77f76b9bdedea432021fa0;p=dbsrgits%2FDBIx-Class.git diff --git a/t/zzzzzzz_sqlite_deadlock.t b/t/zzzzzzz_sqlite_deadlock.t index 268fdaa..a049f22 100644 --- a/t/zzzzzzz_sqlite_deadlock.t +++ b/t/zzzzzzz_sqlite_deadlock.t @@ -9,14 +9,22 @@ use File::Temp (); use DBICTest; use DBICTest::Schema; -plan tests => 2; -my $wait_for = 10; # how many seconds to wait +unless ( DBICTest::AuthorCheck->is_author || $ENV{AUTOMATED_TESTING} || $ENV{RELEASE_TESTING} ) { + plan( skip_all => "Skipping test on plain module install" ); +} -$TODO = "This seems to be a DBD::SQLite problem, don't test for now"; +plan tests => 2; +my $wait_for = 30; # how many seconds to wait for my $close (0,1) { - my $tmp = File::Temp->new( UNLINK => 1, TMPDIR => 1, SUFFIX => '.sqlite' ); + my $tmp = File::Temp->new( + UNLINK => 1, + TMPDIR => 1, + SUFFIX => '.sqlite', + EXLOCK => 0, # important for BSD and derivatives + ); + my $tmp_fn = $tmp->filename; close $tmp if $close; @@ -30,7 +38,7 @@ for my $close (0,1) { lives_ok (sub { my $schema = DBICTest::Schema->connect ("DBI:SQLite:$tmp_fn"); DBICTest->deploy_schema ($schema); - DBICTest->populate_schema ($schema); + #DBICTest->populate_schema ($schema); }); alarm 0;