From 0b197211fd0d43d16456d747ab356216ef907309 Mon Sep 17 00:00:00 2001 From: "Ille, Ondrej, Ing" Date: Sun, 2 Sep 2018 12:54:11 +0200 Subject: [PATCH] Added fix of Feature test environmnent. Adding 1 is not handled properly and due to that feature test always finds out one iteration later! --- test/feature/tb_feature.vhd | 1 + 1 file changed, 1 insertion(+) diff --git a/test/feature/tb_feature.vhd b/test/feature/tb_feature.vhd index 2e93dd7f..097af03d 100644 --- a/test/feature/tb_feature.vhd +++ b/test/feature/tb_feature.vhd @@ -273,6 +273,7 @@ begin wait until iteration_done = true; loop_ctr <= loop_ctr + 1; + wait for 0 ns; end loop; status <= passed; -- GitLab