RE: Devel::Cover better practice to identify uncovered files

2017-04-18 Thread Jason Pyeron
> -Original Message- > From: James E Keenan > Sent: Tuesday, April 18, 2017 22:28 > > On 04/18/2017 07:43 PM, Jason Pyeron wrote: > > Currently we are using this script to find files (line 48) > under the scripts directory and add them to the coverage report. > > > > After running the

Re: Devel::Cover better practice to identify uncovered files

2017-04-18 Thread James E Keenan
On 04/18/2017 07:43 PM, Jason Pyeron wrote: Currently we are using this script to find files (line 48) under the scripts directory and add them to the coverage report. After running the programs under test, the script is run: $ ./tests/script/cover-missing.pl load ingest 17 known covered

Devel::Cover better practice to identify uncovered files

2017-04-18 Thread Jason Pyeron
Currently we are using this script to find files (line 48) under the scripts directory and add them to the coverage report. After running the programs under test, the script is run: $ ./tests/script/cover-missing.pl load ingest 17 known covered file(s) found preprocess 132 uncovered file(s)

RE: Cevel::Cover missing lines?

2017-04-18 Thread Jason Pyeron
> -Original Message- > From: Paul Johnson > Sent: Tuesday, April 18, 2017 15:29 > > On Tue, Apr 18, 2017 at 12:32:57PM -0400, Jason Pyeron wrote: > > I am "require"ing a file but Devel::Cover is not logging > the statements, only the sub, use, and eval portions. > > > > I tried a

Re: Cevel::Cover missing lines?

2017-04-18 Thread Paul Johnson
On Tue, Apr 18, 2017 at 12:32:57PM -0400, Jason Pyeron wrote: > I am "require"ing a file but Devel::Cover is not logging the statements, only > the sub, use, and eval portions. > > I tried a do(filename.pl) to no help. > > I tried adding -subs_only off (and on) to no effect. > > Any

Re: Devel::Cover missing lines?

2017-04-18 Thread James E Keenan
On 04/18/2017 12:32 PM, Jason Pyeron wrote: I am "require"ing a file but Devel::Cover is not logging the statements, only the sub, use, and eval portions. Exactly *which* statements is it not logging which you believe should be logged? I've been using Devel::Cover for 13 years. I would

Cevel::Cover missing lines?

2017-04-18 Thread Jason Pyeron
I am "require"ing a file but Devel::Cover is not logging the statements, only the sub, use, and eval portions. I tried a do(filename.pl) to no help. I tried adding -subs_only off (and on) to no effect. Any suggestions? (source can be found at