You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -82,7 +84,10 @@ class monitor_logic_vector_array extends uvm_logic_vector_array::monitor #(8);
82
84
elsebegin
83
85
assert(t.eop[i] !==1'b1)
84
86
elsebegin
85
-
`uvm_error(this.get_full_name(), "\n\tThe EOP was set before a new packet transfer started. A SOP wasn't set before this EOP")
87
+
string msg;
88
+
// verilog_lint: waive line-length
89
+
msg ="\n\tThe EOP was set before a new packet transfer started. A SOP wasn't set before this EOP";
90
+
`uvm_error(this.get_full_name(), msg);
86
91
end
87
92
end
88
93
end
@@ -98,7 +103,10 @@ class monitor_logic_vector_array extends uvm_logic_vector_array::monitor #(8);
98
103
99
104
assert(t.sop[i] !==1'b1)
100
105
elsebegin
101
-
`uvm_error(this.get_full_name(), "\n\tThe SOP was before the last packet transfer correctly ended. A EOP wasn't set at the end of the packet transfer")
106
+
string msg;
107
+
// verilog_lint: waive line-length
108
+
msg ="\n\tThe SOP was before the last packet transfer correctly ended. A EOP wasn't set at the end of the packet transfer";
109
+
`uvm_error(this.get_full_name(), msg);
102
110
end
103
111
end
104
112
end
@@ -150,7 +158,9 @@ class monitor_logic_vector extends uvm_logic_vector::monitor #(1);
0 commit comments