Ignore horizontal long lines in 013-intpips fuzzer

Signed-off-by: Clifford Wolf <clifford@clifford.at>
Signed-off-by: Tim 'mithro' Ansell <mithro@mithis.com>
This commit is contained in:
Clifford Wolf 2017-11-16 04:56:11 +00:00 committed by Tim 'mithro' Ansell
parent 80c4245d10
commit baeca2726a
1 changed files with 2 additions and 2 deletions

View File

@ -42,8 +42,8 @@ with open("design.txt", "r") as f:
tiledata[tile]["dsts"].add(src)
if pnum == 1 or pdir == 0 or \
re.match(r"^LVB?(_L)?[0-9]", src) or \
re.match(r"^LVB?(_L)?[0-9]", dst):
re.match(r"^L[HV]B?(_L)?[0-9]", src) or \
re.match(r"^L[HV]B?(_L)?[0-9]", dst):
ignpip.add(pip)
for tile, pips_srcs_dsts in tiledata.items():