NAME
Test2::Harness::Runner - Responsible for spawning test processes.
DESCRIPTION
This is used to spawn each test file and return an Test2::Harness::Proc handle for it.
SPAWN METHODS
Depending on platform and command line arguments one of these will be used:
- via_open3
-
This is the default, it uses
open3
to spawn a new process that runs the test file. - via_do
-
This is used in preload mode to fork for each new process.
- via_files
- via_win32
-
This uses temporary files and open3 together. 'via_win32' is an alias to 'via_files'.
SOURCE
The source code repository for Test2-Harness can be found at http://github.com/Test-More/Test2-Harness/.
MAINTAINERS
AUTHORS
COPYRIGHT
Copyright 2016 Chad Granum <exodist7@gmail.com>.
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/