[PATCH][benchtests] Skip over blank lines in the input file

Ondřej Bílka neleai@seznam.cz
Wed Dec 4 10:36:00 GMT 2013


On Wed, Dec 04, 2013 at 03:39:27PM +0530, Siddhesh Poyarekar wrote:
> Hi,
> 
> I just noticed that the input file breaks on blank lines.  The patch
> below fixes it.  OK to commit?
> 
> Siddhesh
> 
> 	* scripts/bench.pl: Skip over blank lines.
> 
> diff --git a/scripts/bench.pl b/scripts/bench.pl
> index 7eb1525..90441e1 100755
> --- a/scripts/bench.pl
> +++ b/scripts/bench.pl
> @@ -83,8 +83,8 @@ LINE:while (<INPUTS>) {
>      }
>    }
>  
> -  # Skip over comments.
> -  if (/^#/) {
> +  # Skip over comments and blank lines.
> +  if (/^#/ || /^$/) {
>      next LINE;
>    }
>    push (@curvals, $_);

ok



More information about the Libc-alpha mailing list