DBI 1.609: make test fails
Torsten Förtsch <[email protected]>
| Newsgroups | gmane.comp.lang.perl.modules.dbi.sybase.devel |
|---|---|
| Message-ID | <[email protected]> |
Hi,
I tried to test DBI on a Debian linux platform. "make test" fails in
t/80proxy.t lines 247, 260 and 291.
The reason is the dbiproxy.dbilog file in the current directory. During the
test is grows. So, 2 subsequent reads of its size very likely return different
values. Exactly this happens at least at line 247.
After changing line 78 from
my $dbitracelog = "dbiproxy.dbilog";
to
my $dbitracelog = "/tmp/dbiproxy.dbilog";
all tests were successful.
I believe this is a test-bug.
Torsten