parser: you didn't see this
authorBernhard Urban <lewurm@gmail.com>
Sat, 15 May 2010 13:58:31 +0000 (15:58 +0200)
committerBernhard Urban <lewurm@gmail.com>
Sat, 15 May 2010 13:58:45 +0000 (15:58 +0200)
src/beh_parser_tb.vhd

index 732f3642bdf5b354c0e9116c3be3a8b1953c9323..92b685c5dc31176dcf2e6aada8487b0281f7932c 100644 (file)
@@ -81,7 +81,7 @@ begin
                        f1_loop : while not endfile(f) loop
                                readline (f, l);
                                input := (others => nul);
-                               if (l'length <= 72) then
+                               if (l'length <= 71) then
                                        input(1 to l'length) := l.all;
                                        if (input(1) = '#') then
                                                next f1_loop;
@@ -97,7 +97,7 @@ begin
                        f2_loop : while not endfile(f) loop
                                readline (f, l);
                                expectedresult := (others => nul);
-                               if (l'length <= 72) then
+                               if (l'length <= 71) then
                                        expectedresult(1 to l'length) := l.all;
                                        if (expectedresult(1) = '#') then
                                                next f2_loop;