From: Peter Rabbitson Date: Fri, 27 Aug 2010 14:57:29 +0000 (+0200) Subject: Disable t/zzzzzzz_sqlite_deadlock.t for regular installs X-Git-Tag: v0.08124~97 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class.git;a=commitdiff_plain;h=d096e13f26c08593a9ba497d562026beffb4f85d Disable t/zzzzzzz_sqlite_deadlock.t for regular installs --- diff --git a/Changes b/Changes index e0ba08f..f7828d0 100644 --- a/Changes +++ b/Changes @@ -33,6 +33,8 @@ Revision history for DBIx::Class from tests - No longer depend on SQL::Abstract::Limit - DBIC has been doing most of the heavy lifting for a while anyway + - Do not execute t/zzzzzzz_sqlite_deadlock.t for regular module + installs - test is prone to spontaneous blow up 0.08123 2010-06-12 14:46 (UTC) * Fixes diff --git a/t/zzzzzzz_sqlite_deadlock.t b/t/zzzzzzz_sqlite_deadlock.t index ebc18a9..a049f22 100644 --- a/t/zzzzzzz_sqlite_deadlock.t +++ b/t/zzzzzzz_sqlite_deadlock.t @@ -9,6 +9,10 @@ use File::Temp (); use DBICTest; use DBICTest::Schema; +unless ( DBICTest::AuthorCheck->is_author || $ENV{AUTOMATED_TESTING} || $ENV{RELEASE_TESTING} ) { + plan( skip_all => "Skipping test on plain module install" ); +} + plan tests => 2; my $wait_for = 30; # how many seconds to wait