How to make custom summary report?

3 posts / 0 new
Last post
Arayik Babayan
Offline
Academy Forum User
Joined: 02/17/2012
Posts: 26
How to make custom summary report?

I dont have ovm structure classes. There is only one class inherited from the ovm_component. I use this class in product to report errors/warnings with using OVM facilities. I need to print out summary report even when max_quit_count is not reached.
Please if anybody know how to implement that help me!!!

Thanks in advance,
Araik

Vaibhav Tekale
Offline
Academy Forum User
Joined: 08/26/2011
Posts: 139
Re: How to make custom summary report?

Hi,

You can use the method either dump_report_state(); or report_summarize();

report_summerize will give you the report summary as below:

--- OVM Report Summary ---

** Report counts by severity
OVM_INFO : 1
OVM_WARNING : 0
OVM_ERROR : 0
OVM_FATAL : 0

ravivarma
Offline
Academy Total Access User
Joined: 09/23/2011
Posts: 2
Re: How to make custom summary report?

Hi,
Can anybody explain how In the report_summarize() method, the counts for the ovm_info and other severities will count and how to stop counting ovm_info in the summary.