1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

DBD-SQLite: "Your env might be too slow" message should be directed to STDERR to make it visible while doing "make test"

This commit is contained in:
Kenichi Ishigaki 2009-08-15 10:33:39 +00:00
parent 04b6100190
commit e761e1af79

View file

@ -100,7 +100,7 @@ foreach my $call_func (@CALL_FUNCS) {
eval { $dbh->do("INSERT INTO Blah VALUES (4, 'Test4' )") };
ok !$@;
if ($@) {
print "# Your testing environment might be too slow to pass this test: $@";
print STDERR "# Your testing environment might be too slow to pass this test: $@";
$dbh->rollback;
}
else {