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

Fixed expected cnt.

parent a6c9698c
No related branches found
No related tags found
3 merge requests!28Master,!25Resolve L2SDP-100,!23Resolve L2SDP-100
...@@ -238,8 +238,8 @@ BEGIN ...@@ -238,8 +238,8 @@ BEGIN
END IF; END IF;
ELSE ELSE
-- Verify expected number of clip_even (when in_sop is at even) and clip_odd (when in_sop is at odd) -- Verify expected number of clip_even (when in_sop is at even) and clip_odd (when in_sop is at odd)
ASSERT cnt_even = 12 REPORT "Wrong number of expected c_min to c_max at even index" SEVERITY ERROR; ASSERT cnt_even = 4 REPORT "Wrong number of expected clipped c_min to c_max at even index" SEVERITY ERROR;
ASSERT cnt_odd = 4 REPORT "Wrong number of expected clipped c_min to c_max at odd index" SEVERITY ERROR; ASSERT cnt_odd = 12 REPORT "Wrong number of expected clipped c_min to c_max at odd index" SEVERITY ERROR;
WAIT; WAIT;
END IF; END IF;
END PROCESS; END PROCESS;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment