nosnhojn Posted April 5, 2012 Report Share Posted April 5, 2012 I'm trying to disable the info message that's displayed in the phase jumping. I'm doing this: set_report_id_action("PH_JUMP", UVM_NO_ACTION);to get rid of this message: # UVM_INFO /home/njohnson/lib/uvm-1.1a/src/base/uvm_phase.svh(1276) @ 986: reporter [PH_JUMP] phase post_shutdown (schedule uvm_sched, domain uvm) is jumping to phase pre_reset without any luck. I suspect there's something simple I've got wrong but don't know what it is. Can someone straighten me out? thanks -neil Quote Link to comment Share on other sites More sharing options...
Erling Posted April 5, 2012 Report Share Posted April 5, 2012 The report ID's are local to a component (for some reason). You could use the hier-version of set_report_id_action(), but if you have look at how that works, you may want to override the report server process_report() instead, to filter out the PH_JUMP report. This can be useful for other things as well, for example to format the reports the way you like, get rid of the hierarchical reporting altogether, etc. Erling Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.