diff --git a/README.rst b/README.rst index 1a8f34017..5d4767137 100644 --- a/README.rst +++ b/README.rst @@ -15,8 +15,6 @@ :target: https://hub.docker.com/r/verilator/verilator .. |badge6| image:: https://api.codacy.com/project/badge/Grade/fa78caa433c84a4ab9049c43e9debc6f :target: https://www.codacy.com/gh/verilator/verilator -.. |badge7| image:: https://codecov.io/gh/verilator/verilator/branch/master/graph/badge.svg - :target: https://codecov.io/gh/verilator/verilator .. |badge8| image:: https://github.com/verilator/verilator/workflows/build/badge.svg :target: https://github.com/verilator/verilator/actions?query=workflow%3Abuild diff --git a/test_regress/t/t_uvm_pkg_todo.vh b/test_regress/t/t_uvm_pkg_todo.vh index 888258fa2..0ef277ddb 100644 --- a/test_regress/t/t_uvm_pkg_todo.vh +++ b/test_regress/t/t_uvm_pkg_todo.vh @@ -22444,8 +22444,8 @@ class uvm_reg_item extends uvm_sequence_item; uvm_elem_kind_e element_kind; uvm_object element; rand uvm_access_e kind; - //TODO issue-4625 - Rand fields of dynamic array types - //TODO %Error-UNSUPPORTED: t/t_uvm_pkg_todo.vh:21081:35: Unsupported: random member variable with type 'bit[]' + //TODO issue-5582 - Rand constraint with .size + //TODO %Warning-CONSTRAINTIGN: t/t_uvm_pkg_todo.vh:#:#: Unsupported: randomizing this expression, treating as state /*rand*/ uvm_reg_data_t value[]; constraint max_values { value.size() > 0 && value.size() < 1000; } rand uvm_reg_addr_t offset; @@ -26866,8 +26866,8 @@ class uvm_reg_fifo extends uvm_reg; local uvm_reg_field value; local int m_set_cnt; local int unsigned m_size; - //TODO issue-4625 - Rand fields of dynamic array types - //TODO %Error-UNSUPPORTED: t/t_uvm_pkg_todo.vh:21081:35: Unsupported: random member variable with type 'bit[$]' + //TODO issue-5582 - Rand constraint with .size + //TODO %Warning-CONSTRAINTIGN: t/t_uvm_pkg_todo.vh:#:#: Unsupported: randomizing this expression, treating as state /*rand*/ uvm_reg_data_t fifo[$]; constraint valid_fifo_size { fifo.size() <= m_size;