Commit da381310 by Eddie Hung

Do not skip 'if' tests when assert_area

parent d7993907
...@@ -38,9 +38,6 @@ for fn in glob.glob('*.v'): ...@@ -38,9 +38,6 @@ for fn in glob.glob('*.v'):
m = re_mux.match(fn) m = re_mux.match(fn)
if not m: continue if not m: continue
# TODO
if m.group(1) == 'if': continue
N,W = map(int, m.group(2,3)) N,W = map(int, m.group(2,3))
assert N in area assert N in area
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment