Hi all!
I've been trying to completely do without the full path of filename when reporting
for example
instead of
UVM_INFO /1/2/3/4/5/6/7/8/filename.sv (linenum) "Message"
I want completely remove or shorten the path
UVM_INFO /.../filename.sv (linenum) "Message"
I've tried using
UVM_REPORT_DISABLE_FILE_LINE UVM_REPORT_DISABLE_FILE
But it completely removes the filename and line num from the report.
I'm looking into the uvm source code and make my own modifications, but I don't want to mess around with the libraries since I share the installation directories.
Anybody has done this before?
Thank you!