From f9f6dc91cbd4ad23607eaba88dc3e6431d13dd37 Mon Sep 17 00:00:00 2001 From: Srikrishna Iyer Date: Thu, 28 May 2020 18:24:42 -0700 Subject: [PATCH] [dv] Very minor info msg cleanup Signed-off-by: Srikrishna Iyer --- hw/top_earlgrey/dv/env/seq_lib/chip_sw_uart_tx_rx_vseq.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/top_earlgrey/dv/env/seq_lib/chip_sw_uart_tx_rx_vseq.sv b/hw/top_earlgrey/dv/env/seq_lib/chip_sw_uart_tx_rx_vseq.sv index 8d3056d1273cd..99c1415c5fd62 100644 --- a/hw/top_earlgrey/dv/env/seq_lib/chip_sw_uart_tx_rx_vseq.sv +++ b/hw/top_earlgrey/dv/env/seq_lib/chip_sw_uart_tx_rx_vseq.sv @@ -65,6 +65,7 @@ class chip_sw_uart_tx_rx_vseq extends chip_sw_base_vseq; wait(uart_tx_data_q.size() == exp_uart_tx_data.size()); // Check if we received the right data set over the TX port. + `uvm_info(`gfn, "Checking the received UART TX data for consistency.", UVM_LOW) foreach (uart_tx_data_q[i]) begin `DV_CHECK_EQ(uart_tx_data_q[i], exp_uart_tx_data[i]) end @@ -78,7 +79,6 @@ class chip_sw_uart_tx_rx_vseq extends chip_sw_base_vseq; uart_default_seq send_rx_seq; `uvm_create_on(send_rx_seq, p_sequencer.uart_sequencer_h); if (size == -1) size = uart_rx_data.size(); - `uvm_info(`gfn, "Checking the received UART TX data for consistency.", UVM_LOW) for (int i = 0; i < size; i++) begin byte rx_data = random ? $urandom : uart_rx_data[i]; `DV_CHECK_RANDOMIZE_WITH_FATAL(send_rx_seq, data == rx_data;)