Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to obtain Code coverage numbers from VS 2012 Trial Version tool?

When I run my test cases (manually) after instrumentation, the .coverage file says my .pdb's may not be present or may be incorrect.

Is there something else i need to do?

For Instrumentation i do the Following:

  • use vsinstr with coverage flag and instrument the .dll and .exe
  • copy all .dll, .exe and .pdb file
  • I execute the test cases.

I am using Visual Studio ultimate 2012 Trial version downloaded from MSDN site

share|improve this question
in the case of vs2010 i tried this : tools ->options ->debugging->symbols->tick the check mark against microsoft symbol server and click ok . please check – user2166576 Jan 25 at 13:26
Yes, the same procedure works fine in 2008 and 2012 – Nida Sahar Jan 25 at 13:35
is this solved your problem? – user2166576 Jan 25 at 13:36
a) are you using vsperfmon with the -coverage option b) are you using the right version of these tools ie 64-bit or 32bit – allen Jan 26 at 7:55
Yes, i am using the right version of tool (64 bit) and using vspermon with coverage option – Nida Sahar Jan 28 at 11:30
show 2 more comments

1 Answer

Try this :

tools ->options ->debugging->symbols->tick the check mark against microsoft symbol server

and click ok .

share|improve this answer
this will only ensure my instrumentation works fine rt? – Nida Sahar Jan 28 at 11:33
yes.. I expect the problem is in instrumentation – user2166576 Jan 29 at 5:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.