Skip to content

Commit 09da6d9

Browse files
committed
added catch around quit -sim to remove extraneous tool messages
1 parent 0ad5e90 commit 09da6d9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

VendorScripts_RivieraPro.tcl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,10 @@ proc vendor_analyze_verilog {LibraryName FileName args} {
187187
# End Previous Simulation
188188
#
189189
proc vendor_end_previous_simulation {} {
190-
quit -sim
190+
catch {quit -sim} ;# catch suppresses the simulator messages
191191
framework.documents.closeall -vhdl
192192
::osvvm::CloseAllFiles
193+
puts ""
193194
}
194195

195196
# -------------------------------------------------

0 commit comments

Comments
 (0)