Test2::Util - Tools used by Test2 and friends.
Collection of tools used by Test2 and friends.
All exports are optional. You must specify subs to import.
Eval the codeblock, return success or failure, and the error message. This code protects $@ and $!, they will be restored by the end of the run. This code also temporarily blocks $SIG{DIE} handlers.
Similar to try, except that it does not catch exceptions. The idea here is to protect $@ and $! from changes. $@ and $! will be restored to whatever they were before the run so long as it is successful. If the run fails $! will still be restored, but $@ will contain the exception being thrown.
True if this system is capable of true or pseudo-fork.
True if the system can really fork. This will be false for systems where fork is emulated.
True if this system is capable of using threads.
Returns true if threads are enabled, false if they are not.
This will return the id of the current thread when threads are enabled, otherwise it returns 0.
Convert a package name to a filename.
Perl 5.10.0 has a bug when compiled with newer gcc versions. This bug causes a segfault whenever a new thread is launched. Test2 will attempt to detect this, and note that the system is not capable of forking when it is detected.
Devel::Cover does not support threads. CAN_THREAD will return false if Devel::Cover is loaded before the check is first run.
The source code repository for Test2 can be found at http://github.com/Test-More/test-more/.
Copyright 2016 Chad Granum <exodist@cpan.org>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See http://dev.perl.org/licenses/