qickrooms / flexcover

Automatically exported from code.google.com/p/flexcover
0 stars 0 forks source link

coverage report is not being written to disk #28

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. I am running C:/src/CoverageViewer/CoverageViewer.exe
c:/src/code/coverage/prj.cvm -output=c:/src/code/coverage/prj.cvr

What is the expected output? What do you see instead?
No cvr is being written to the disk.  the coverage app is opening and the
unit tests are running.  the coverage app is displaying the correct
coverage as the tests are running.

What version of the product are you using? On what operating system?
0.61/win xp

Please provide any additional information below.

Original issue reported on code.google.com by eamonn.f...@gmail.com on 17 Mar 2009 at 9:21

GoogleCodeExporter commented 8 years ago
I have upgraded to 0.81 and changed my command to 

C:/src/CoverageViewer/CoverageViewer.exe
c:/src/code/coverage/prj.cvm -output c:/src/code/coverage/prj.cvr

It still doesnt work

Original comment by eamonn.f...@gmail.com on 17 Mar 2009 at 9:27

GoogleCodeExporter commented 8 years ago
managed to fix this.  I was using exec in ant.  it doesnt like the arg "-output 
file.crv"

it wanted two args instead:

arg "-output"
arg "file.crv"

Original comment by eamonn.f...@gmail.com on 17 Mar 2009 at 3:18