5.8.1 threads are wonky - tests no longer pass with recent DBD::Pg
Peter Rabbitson [Tue, 11 Jan 2011 17:25:39 +0000 (18:25 +0100)]
t/51threads.t
t/51threadtxn.t

index 4564e3f..14d74e3 100644 (file)
@@ -9,6 +9,11 @@ BEGIN {
         if !$Config{useithreads};
 }
 
+BEGIN {
+    plan skip_all => 'Minimum of perl 5.8.3 required for thread tests (DBD::Pg mandated)'
+        if $] < '5.008003';
+}
+
 use threads;
 use Test::Exception;
 use lib qw(t/lib);
index 84a4c3d..4c218d0 100644 (file)
@@ -11,6 +11,12 @@ BEGIN {
         if !$Config{useithreads};
 }
 
+BEGIN {
+    plan skip_all => 'Minimum of perl 5.8.3 required for thread tests (DBD::Pg mandated)'
+        if $] < '5.008003';
+}
+
+
 use threads;
 use lib qw(t/lib);