Hi David,

On Sat, 16 Nov 2013 22:15:14 -0800
David Christensen <dpchr...@holgerdanske.com> wrote:

> makemaker:
> 
> I have a computer with a multi-core processor, Debian 7, and Perl 
> 5.14.2.  'make --jobs all' seems to run concurrently, but 'make --jobs 
> test' seems to be single-threaded.  Is there a way to run tests 
> concurrently?
> 

make test is a single make target so make -j or make --jobs won't help here.
What might help is the HARNESS_OPTIONS environment variable:

HARNESS_OPTIONS="j9" make test

See "perldoc Test::Harness":

https://metacpan.org/pod/Test::Harness

Regards,

        Shlomi Fish

-- 
-----------------------------------------------------------------
Shlomi Fish       http://www.shlomifish.org/
My Public Domain Photos - http://www.flickr.com/photos/shlomif/

I’d love to change the world, but they won’t give me the source code.
    — Unknown

Please reply to list if it's a mailing list post - http://shlom.in/reply .

Reply via email to