Files
iverilog/ivtest/gold/sv_queue_vec.gold
T
Stephen Williams cea237b407 Add ivtest to the iverilog source tree
By adding ivtest to the iverilog source tree, it is easier to keep
the regression test synchronized with the source that is being tested.
This should be especially helpful for PRs that add a new feature, and
have a matching ivtest PR with the regression test for that feature.
2022-01-15 10:18:50 -08:00

17 lines
1.8 KiB
Plaintext

./ivltests/sv_queue_vec.v:32: Warning: skipping delete(0) on empty queue.
./ivltests/sv_queue_vec.v:36: Warning: pop_front() on empty queue<vector[32]>.
./ivltests/sv_queue_vec.v:42: Warning: pop_back() on empty queue<vector[32]>.
./ivltests/sv_queue_vec.v:53: Warning: skipping out of range delete(3) on queue of size 3.
./ivltests/sv_queue_vec.v:54: Warning: skipping queue delete() with negative index.
./ivltests/sv_queue_vec.v:55: Warning: skipping queue delete() with undefined index.
./ivltests/sv_queue_vec.v:129: Warning: cannot assign to a negative queue<vector[32]> index (-1). 32'b00000000000000000000000000001010 was not added.
./ivltests/sv_queue_vec.v:130: Warning: cannot assign to an undefined queue<vector[32]> index. 32'b00000000000000000000000000001010 was not added.
./ivltests/sv_queue_vec.v:131: Warning: assigning to queue<vector>[4] is outside of size (3). 32'b00000000000000000000000000001010 was not added.
./ivltests/sv_queue_vec.v:134: Warning: cannot assign to a negative queue<vector[32]> index (-1). 32'b00000000000000000000000000001010 was not added.
./ivltests/sv_queue_vec.v:136: Warning: cannot assign to an undefined queue<vector[32]> index. 32'b00000000000000000000000000001010 was not added.
./ivltests/sv_queue_vec.v:138: Warning: assigning to queue<vector>[4] is outside of size (3). 32'b00000000000000000000000000001010 was not added.
./ivltests/sv_queue_vec.v:150: Warning: cannot insert at a negative queue<vector[32]> index (-1). 32'b00000000000000000000000000001010 was not added.
./ivltests/sv_queue_vec.v:151: Warning: cannot insert at an undefined queue<vector[32]> index. 32'b00000000000000000000000000001010 was not added.
./ivltests/sv_queue_vec.v:152: Warning: inserting to queue<vector[32]>[5] is outside of size (4). 32'b00000000000000000000000000001010 was not added.
PASSED