| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
|
|
|
| |
This reverts commit 57c819f845c985ed9979bfa76b1b8ca1708370f0.
Reverting to give us time to explore possible race condition. See:
https://rt.perl.org/Ticket/Display.html?id=130777
|
| |
|
|
|
|
|
| |
require calls now require ./ to be prepended to the file since . is no
longer guaranteed to be in @INC.
|
|
|
|
| |
For: RT #128195
|
| |
|
| |
|
|
|
|
| |
Mostly these are too long verbatim lines.
|
|
|
|
| |
Committer: Add additional email address for contributor.
|
| |
|
|
|
|
| |
For: RT #125864
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Some test files use File::Temp in such a way that the temporary files and
directories under /tmp aren't deleted at the end. On a smoker system, this
can gradually accumulate thousands of entries under /tmp.
The general culprits fixed by this commit are:
1) using tempfile() without the UNLINK => 1 argument;
2) Using Test::More (which uses Test::Stream), which creates a test
directory in such a way that only the original parent thread will
remove it; for some reason I still don't fully understand, detaching a
thread rather than joining it stops this clean up happening. In the
affected test files, I replaced the ->detach() with a ->join() just
before exit, and the problem went away.
Some tests under cpan/ are still leaky; these will be addressed upstream.
|
|
|
|
| |
This involves a version bump, to 3.05.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Attached patch updates Thread::Queue to v3.0.2 in preparation for a
CPAN release.
Adds a new method to Thread::Queue to dequeue items with a timeout
feature. This addition was suggested by Andreas Huber.
Signed-off-by: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
|
| |
|
| |
|
| |
|
|
|