mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 04:50:07 +00:00
benchtests: skip over blank lines in benchmark input files
This commit is contained in:
parent
fbf964ae8b
commit
ecaf142d3d
@ -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]
|
||||
|
@ -83,8 +83,8 @@ LINE:while (<INPUTS>) {
|
||||
}
|
||||
}
|
||||
|
||||
# Skip over comments.
|
||||
if (/^#/) {
|
||||
# Skip over comments and blank lines.
|
||||
if (/^#/ || /^$/) {
|
||||
next LINE;
|
||||
}
|
||||
push (@curvals, $_);
|
||||
|
Loading…
Reference in New Issue
Block a user