<html>
  <head>
    <meta content="text/html; charset=windows-1252"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">On 10/08/2015 15:34, Aradeonas wrote:<br>
    </div>
    <blockquote
cite="mid:1439217255.538816.352338665.71538A1A@webmail.messagingengine.com"
      type="cite">
      <title></title>
      <div>Is there any way to find out what lines of a project run in
        all units like a log?<br>
      </div>
      <div>For example :<br>
      </div>
      <div> </div>
      <blockquote>
        <div>unit1 line 345<br>
        </div>
        <div>unit1 line 346<br>
        </div>
        <div>unit1 line 347<br>
        </div>
        <br>
      </blockquote>
    </blockquote>
    <br>
    As in code coverage?<br>
    <br>
    The best I can think of is valgrind (linux only), with kcachegrind.<br>
    It doesn't give you a log, but you can view all code, and it tells
    you which lines were run, which function was called from which
    others, ...<br>
    <br>
    The cost is, that your app will run much,much slower during the
    test.<br>
    <br>
  </body>
</html>