From: Peter Rabbitson Date: Sat, 25 Oct 2014 12:49:02 +0000 (+0200) Subject: Blacklist certain trial versions of DBD::SQLite in testing X-Git-Tag: v0.082810~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class.git;a=commitdiff_plain;h=ce896b0d3c9cad852584b36091397db3c0051751 Blacklist certain trial versions of DBD::SQLite in testing (slightly modified cherry pick of 83e81c2d) --- diff --git a/t/752sqlite.t b/t/752sqlite.t index 008b7f1..e1d90bd 100644 --- a/t/752sqlite.t +++ b/t/752sqlite.t @@ -144,6 +144,11 @@ $row->discard_changes; is ($row->rank, 'abc', 'proper rank inserted into database'); # and make sure we do not lose actual bigints +SKIP: { + +skip "Not testing bigint handling on known broken DBD::SQLite trial versions", 1 + if( modver_gt_or_eq('DBD::SQLite', '1.45') and ! modver_gt_or_eq('DBD::SQLite', '1.45_03') ); + { package DBICTest::BigIntArtist; use base 'DBICTest::Schema::Artist'; @@ -310,7 +315,8 @@ SKIP: { } is_deeply (\@w, [], "No mismatch warnings on bigint operations ($v_desc)" ); -} + +}} done_testing;