in reply to Test::More and semaphore handles on Windows
Test::Builder keeps around information about each test executed to do its reporting at the end of the test file. This is effectively global data.
So that Test::Builder can work with tests that use thread (or tests for code that uses thread), it has to make sure that that global data is thread-safe, hence the use of sharing.
This is only an issue with ithreads, so it only affects Perls of 5.7.x and later.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Test::More and semaphore handles on Windows
by blm (Hermit) on Aug 25, 2004 at 05:27 UTC | |
by chromatic (Archbishop) on Aug 25, 2004 at 17:03 UTC |