X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema.pm;h=a4a6d5e0c6e8d9434f966344e185ad825b7e474b;hb=9b871b00c;hp=d24acbdcea5561e4e04eb0046f6c0800b23e032a;hpb=f3ec358e1859eb4ab179fda0d93e8c0336c0f8a9;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/Schema.pm b/t/lib/DBICTest/Schema.pm index d24acbd..a4a6d5e 100644 --- a/t/lib/DBICTest/Schema.pm +++ b/t/lib/DBICTest/Schema.pm @@ -9,8 +9,7 @@ use base 'DBIx::Class::Schema'; use Fcntl qw/:DEFAULT :seek :flock/; use Time::HiRes 'sleep'; -use Path::Class::File; -use File::Spec; +use DBICTest::RunMode; use DBICTest::Util qw/populate_weakregistry assert_empty_weakregistry local_umask/; use namespace::clean; @@ -150,9 +149,13 @@ sub connection { # Also if there is no connection - there is no lock to be had if ($locktype and (!$locker or $locker->{type} ne $locktype)) { - warn "$$ $0 $locktype" if $locktype eq 'generic' or $locktype eq 'SQLite'; + warn "$$ $0 $locktype" if ( + ($locktype eq 'generic' or $locktype eq 'SQLite') + and + DBICTest::RunMode->is_author + ); - my $lockpath = File::Spec->tmpdir . "/.dbictest_$locktype.lock"; + my $lockpath = DBICTest::RunMode->tmpdir->file(".dbictest_$locktype.lock"); my $lock_fh; {