Switch remaining problematic tests to skip away in is_plain (enduser
installation) mode, keep failing for the time being for authors until
a cause is found.
Please *DO NOT* quietly skip inconvenient tests
use warnings;
use Test::More;
+use lib qw(t/lib);
+use DBICTest;
+
plan skip_all => 'DBIC does not actively support threads before perl 5.8.5'
if $] < '5.008005';
-use lib qw(t/lib);
-use DBICTest;
+plan skip_all => 'Potential problems on Win32 Perl < 5.14 and Variable::Magic - investigation pending'
+ if $^O eq 'MSWin32' && $] < 5.014 && DBICTest::RunMode->is_plain;
# README: If you set the env var to a number greater than 10,
# we will use that many children
use lib qw(t/lib);
use DBICTest;
-plan skip_all => 'Test segfaults on Win32' if $^O eq 'MSWin32';
+plan skip_all => 'Test segfaults on Win32 - investigation pending'
+ if $^O eq 'MSWin32' && DBICTest::RunMode->is_plain;
for my $type (qw/PG MYSQL SQLite/) {