Hi Kathryn On Dienstag, Januar 28, 2003, at 06:13 Uhr, [EMAIL PROTECTED] wrote:
I have experienced exactly the same failure when attempting to install DBIWell, neither I nor Tim had the time to debug it. So what I did is to apply this patch:
1.32 on AIX 4.3.3.0 using Perl 5.005_03.
Did you manage to solve the problem using Tim's suggestions?
diff -ru DBI-1.32/t/10examp.t DBI-1.32-patched/t/10examp.t
--- DBI-1.32/t/10examp.t Sun Dec 1 23:36:54 2002
+++ DBI-1.32-patched/t/10examp.t Fri Jan 17 12:51:32 2003
@@ -224,7 +224,9 @@
my $foo;
return ! eval { ($foo=join('',@_)), kill 0; 1; };
}
-if (is_tainted($^X) && !$DBI::PurePerl) {
+# removed tainted tests as suggested by
+# Kelly Quiros (FOX) <[EMAIL PROTECTED]> (chris01, 2003-01-17)
+if (0 && is_tainted($^X) && !$DBI::PurePerl) {
print "Taint attribute test enabled\n";
$dbh->{'Taint'} = 0;
my $st;
to disable the tainted tests. This works so far here.
Any help would be much appreciated - I attach details from my 'make test'.
I would also love to know what is going on here. Anybody?
Regards, Christian.
