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:
parent
04b6100190
commit
e761e1af79
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue