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

Siddhesh Poyarekar siddhesh@redhat.com
Wed Dec 4 10:11:00 GMT 2013


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, $_);



More information about the Libc-alpha mailing list