X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=hwmod.git;a=blobdiff_plain;f=src%2Fbeh_scanner_tb.vhd;h=f0704d5fe64b7544e5ec818f4286d96a2026867c;hp=e904d76024c941a461b090932b5742f68b5403ab;hb=a808051e1631ed84fed6e5b394e4a54856ea63b0;hpb=1f62802d156d7312d3008e2e74b3f4e873863b9d diff --git a/src/beh_scanner_tb.vhd b/src/beh_scanner_tb.vhd index e904d76..f0704d5 100644 --- a/src/beh_scanner_tb.vhd +++ b/src/beh_scanner_tb.vhd @@ -127,7 +127,7 @@ begin f1_loop : while not endfile(f) loop readline (f, l); input := (others => nul); - if (l'length <= 71) then + if (l'length <= 72) then input(1 to l'length) := l.all; if (input(1) = '#') then next f1_loop; @@ -143,7 +143,7 @@ begin f2_loop : while not endfile(f) loop readline (f, l); expectedresult := (others => nul); - if (l'length <= 71) then + if (l'length <= 72) then expectedresult(1 to l'length) := l.all; if (expectedresult(1) = '#') then next f2_loop;