Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Devel-Cover CPAN distribution.

Report information
The Basics
Id: 44906
Status: resolved
Priority: 0/
Queue: Devel-Cover

People
Owner: Nobody in particular
Requestors: dolmen [...] cpan.org
MTHURN [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.64
Fixed in: (no value)



Subject: cover -test runs the wrong `make` on Windows
`cover -test` always runs `make test`. However, on Windows the correct command would be `nmake test` or maybe even `dmake test`. PLEASE at least let the user specify the make command name. -- - - Martin 'Kingpin' Thurn
Subject: use $Config{make} in cover script
Le 2009-04-09 16:13:13, MTHURN a écrit : Show quoted text
> `cover -test` always runs `make test`. However, on Windows the correct > command would be `nmake test` or maybe even `dmake test`. > > PLEASE at least let the user specify the make command name.
"dmake" is the "make" command on StrawberryPerl. "nmake" is the "make" command with Visual C++. cover should use the make command defined in $Config{make} which with StrawberryPerl is "dmake": C:\>perl -MConfig -E "say qq{$Config{make}\n}" dmake -- Olivier Mengué - http://search.cpan.org/~dolmen/ http://github.com/dolmen/
Patch pushed on GitHub. -- Olivier Mengué - http://search.cpan.org/~dolmen/ http://github.com/dolmen/
Applied, thanks.