File: chapter_gui.xml

package info (click to toggle)
covered 0.7.10-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,040 kB
  • sloc: ansic: 48,809; yacc: 11,650; xml: 8,838; tcl: 7,698; sh: 3,925; lex: 2,240; makefile: 362; perl: 329
file content (57 lines) | stat: -rw-r--r-- 2,596 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<chapter id="chapter.gui.intro">
  <title>Introduction to the GUI</title>
  <para>
    The Covered report viewer GUI allows a user to view the coverage results from one or more CDD (Covered Design Database) files that have 
    been previously generated using the Covered score and/or merge commands.  The advantages of using the GUI versus using an ASCII file to 
    view coverage results are the following:
  </para>
  <para>
    <orderedlist>
      <listitem>
        <para>
          View code that is covered/uncovered within the actual source file text (more context)
        </para>
      </listitem>
      <listitem>
        <para>
          Quickly see which modules/instances were uncovered for each coverage metric.
        </para>
      </listitem>
      <listitem>
        <para>
          Ability to hide/unhide verbose information for uncovered code.
        </para>
      </listitem>
      <listitem>
        <para>
          Quickly find expressions that caused combinational logic cases to be uncovered.
        </para>
      </listitem>
      <listitem>
        <para>
          Allows user to focus on a particular expression/signal/module/instance that is uncovered.
        </para>
      </listitem>
      <listitem>
        <para>
          Non-useful coverage cases can be interactively excluded/included and summary information automatically recalculated.
        </para>
      </listitem>
    </orderedlist>
  </para>
  <para>
    Because the nature of a GUI interface is much more interactive than a generated text file report, the Covered report viewer is meant 
    to provide the user a more in-depth look at the logic to identify the reasons for not achieving full coverage.  This is the ultimate 
    goal of the GUI interface -- to be an interactive tool for identifying and understanding why full code coverage was not achieved and 
    how to write tests that will cover those areas.
  </para>
  <para>
    The GUI report viewer is invoked by specifying the '-view' option to the Covered report command.  The report viewer is part of the 
    report command and is, therefore, not used to parse/score a design.  However, merging maytake place with the GUI as multiple CDD 
    files may be read, merged (assumingall of the CDD files came from the same DUT) and saved in CDD file format.
  </para>
  <para>
    The rest of the user manual pages describe the various widgets and windows of the GUI and their functionality.  Additionally, this 
    user manual contains information on how to get the most out of the Covered GUI report viewer.
  </para>
</chapter>