
UVM Reporting Mechanism - UVM Severity

·
이론 공부/UVM (Universal Verification Methodology)
uvm_warning, uvm_error, uvm_fatal은 UVM의 로깅 매크로 중에서도 문제 상황을 알리는 용도로 자주 사용되는 매크로라고 설명했었다.`uvm_warning("ID", "This is a warning message");`uvm_error("ID", "This is an error message");`uvm_fatal("ID", "This is a fatal message"); UVM은 특정 메시지의 심각도(severity)를 변경하는 기능을 제공한다. set_report_severity_id_override()는 특정 ID에 대해 severity level을 다운그레이드 또는 변경할 때 사용하는 함수로, 이를 활용하면 테스트 도중 치명적이지 않은 메시지는 살리고, 정말 중요한 오류..