[RELEASE CANDIDATE] Apache-Test-1.14

2004-10-11 Thread Geoffrey Young
a release candidate for Apache-Test 1.14 is now available. http://perl.apache.org/~geoff/Apache-Test-1.14-dev.tar.gz worthy of note is that this version ought to play nicely with Devel::Cover 0.49 with the use of -one-process, making it possible to get coverage results for mod_perl handlers. p

Re: Branch coverage issue in Devel::Cover

2004-10-11 Thread Paul Johnson
On Mon, Oct 11, 2004 at 06:09:04PM +0530, Padubidri Nagaraja Rao, Guruprasad (Guruprasad)** CTR ** wrote: > Hi, > > I am not able to get branch coverage for the following piece of code. > > > #!/usr/bin/perl > > use File::Copy; > > if (move("junk", "junk1")) > { > print "file moved\n"; > }

Branch coverage issue in Devel::Cover

2004-10-11 Thread Padubidri Nagaraja Rao, Guruprasad (Guruprasad)** CTR **
Hi, I am not able to get branch coverage for the following piece of code. #!/usr/bin/perl use File::Copy; if (move("junk", "junk1")) { print "file moved\n"; } else { print "file not moved - $!\n"; } Environment : Solaris 9 Perl 5.6.1 Devel-Cover-0.47 When i run 'cover', Statement cove