Read_xml_report, Usage, Options – Altera Quartus II Scripting User Manual

Page 395: Description, Example, Read_xml_report –265

Advertising
background image

Chapter 3: Tcl Packages & Commands

3–265

report

© July 2013

Altera Corporation

Quartus II Scripting Reference Manual

read_xml_report

Usage

read_xml_report <filename>

Options

<filename>: Name of XML Report Database File from which to read

Description

Creates the current Compilation Report from the specified XML Report Database File (.xml).

Example

# Set project name
set project_name "chiptrip"

load_package report
project_open $project_name

# Read XML Report Database File (.xml)
read_xml_report $project_name.xml

load_report

# Get all the panel names
puts {All Report Panel Names:}
puts [get_report_panel_names]

unload_report
project_close

Advertising