This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.18-491-gecaf142


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  ecaf142d3d70630a0d7f028d334b5339ff2b996d (commit)
      from  fbf964ae8b52fb10ebe5f43996f53ddab53c08ed (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=ecaf142d3d70630a0d7f028d334b5339ff2b996d

commit ecaf142d3d70630a0d7f028d334b5339ff2b996d
Author: Siddhesh Poyarekar <siddhesh@redhat.com>
Date:   Wed Dec 4 18:20:32 2013 +0530

    benchtests: skip over blank lines in benchmark input files

diff --git a/ChangeLog b/ChangeLog
index 55f2c2d..c191b98 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-12-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
+
+	* scripts/bench.pl: Skip over blank lines.
+
 2013-12-04  Paul Eggert  <eggert@cs.ucla.edu>
 
 	[BZ #926]
diff --git a/scripts/bench.pl b/scripts/bench.pl
index 492ab81..6ad93fa 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, $_);

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog        |    4 ++++
 scripts/bench.pl |    4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]