Tests: Rename interface-to-wire (#5649 test partial)

This commit is contained in:
Wilson Snyder 2024-11-30 19:04:31 -05:00
parent 2284ada723
commit 5021989cb6
8 changed files with 12 additions and 10 deletions

View File

@ -1,5 +0,0 @@
%Error: t/t_iface_wire_bad.v:16:20: Operator ASSIGNW expected non-interface on Assign RHS but 'a__Viftop' is an interface.
: ... note: In instance 't'
16 | wire wbad = sub.a;
| ^
%Error: Exiting due to

View File

@ -1,5 +0,0 @@
%Error: Internal Error: t/t_iface_wire_bad_param.v:16:20: ../V3Broken.cpp:#: Broken link in node (or something without maybePointedTo): 'm_varp && !m_varp->brokeExists()' @ ./V3Ast__gen_impl.h:#
: ... note: In instance 't'
16 | wire wbad = sub.a;
| ^
... See the manual at https://verilator.org/verilator_doc.html for more assistance.

View File

@ -0,0 +1,5 @@
%Error: t/t_interface_wire_bad.v:17:20: Operator ASSIGNW expected non-interface on Assign RHS but 'a__Viftop' is an interface.
: ... note: In instance 't'
17 | wire wbad = sub.a;
| ^
%Error: Exiting due to

View File

@ -13,5 +13,6 @@ endmodule
module t;
Sub sub();
// Issue #5649
wire wbad = sub.a;
endmodule

View File

@ -0,0 +1,5 @@
%Error: Internal Error: t/t_interface_wire_bad_param.v:17:20: ../V3Broken.cpp:#: Broken link in node (or something without maybePointedTo): 'm_varp && !m_varp->brokeExists()' @ ./V3Ast__gen_impl.h:#
: ... note: In instance 't'
17 | wire wbad = sub.a;
| ^
... See the manual at https://verilator.org/verilator_doc.html for more assistance.

View File

@ -13,5 +13,6 @@ endmodule
module t;
Sub #(0) sub();
// Issue #5649
wire wbad = sub.a;
endmodule