runtime test coverage?

  • Follow


We need to measure test coverage (branch/statement/function) of C++
programs at runtime (not at unit-test level)

   probably needs to be instrumentation-based

   please suggest tools that may be useful

   UNIX/Linux platforms 


    thanks 


     Mark

0
Reply marktxx (13) 7/14/2005 1:56:21 AM

Hello I have used PureCoverage in the past on variety of platforms. The
tool seemed to be reasonable. You instrument the program and it builds
database during runtime that you can later analyze. It displays
coverage results by files then you can drill down to functions and
individual lines to find out which parts had been missed during testing
and need to be worked upon .My experience is that lots of code related
to handling different exceptional conditions can hardly be covered by
functional tests.

It seems PureCoverage has been merged into IBM Rational PurifyPlus.
You can get trial version to check out if the product is up to
expectations from:
http://www-306.ibm.com/software/awdtools/purifyplus/unix/



-Kiril
http://www.karaatanasov.info/

0
Reply karaatanasov1 (7) 7/14/2005 7:59:20 PM


1 Replies
20 Views

(page loaded in 0.563 seconds)

Similiar Articles:




7/26/2012 6:19:38 PM


Reply: