mirror of
https://github.com/verilator/verilator.git
synced 2024-12-29 10:47:34 +00:00
Tests: Rename interface-to-wire (#5649 test partial)
This commit is contained in:
parent
2284ada723
commit
5021989cb6
@ -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
|
@ -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.
|
5
test_regress/t/t_interface_wire_bad.out
Normal file
5
test_regress/t/t_interface_wire_bad.out
Normal 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
|
@ -13,5 +13,6 @@ endmodule
|
||||
|
||||
module t;
|
||||
Sub sub();
|
||||
// Issue #5649
|
||||
wire wbad = sub.a;
|
||||
endmodule
|
5
test_regress/t/t_interface_wire_bad_param.out
Normal file
5
test_regress/t/t_interface_wire_bad_param.out
Normal 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.
|
@ -13,5 +13,6 @@ endmodule
|
||||
|
||||
module t;
|
||||
Sub #(0) sub();
|
||||
// Issue #5649
|
||||
wire wbad = sub.a;
|
||||
endmodule
|
Loading…
Reference in New Issue
Block a user