Skip to content
Snippets Groups Projects
Commit 4841e286 authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Add ERROR note to proc_common_stop_simulation in case of timeout.

parent 9502bf9a
No related branches found
No related tags found
1 merge request!185Resolve L2SDP-563
...@@ -527,6 +527,7 @@ PACKAGE BODY tb_common_pkg IS ...@@ -527,6 +527,7 @@ PACKAGE BODY tb_common_pkg IS
SIGNAL tb_end : IN STD_LOGIC) IS SIGNAL tb_end : IN STD_LOGIC) IS
BEGIN BEGIN
WHILE tb_end='0' LOOP WHILE tb_end='0' LOOP
ASSERT NOW < c_timeout REPORT "Test bench timeout." SEVERITY ERROR;
ASSERT NOW < c_timeout REPORT "Test bench timeout." SEVERITY FAILURE; ASSERT NOW < c_timeout REPORT "Test bench timeout." SEVERITY FAILURE;
WAIT FOR 1 us; WAIT FOR 1 us;
END LOOP; END LOOP;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment