mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-26 06: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>
|
2013-12-04 Paul Eggert <eggert@cs.ucla.edu>
|
||||||
|
|
||||||
[BZ #926]
|
[BZ #926]
|
||||||
|
@ -83,8 +83,8 @@ LINE:while (<INPUTS>) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Skip over comments.
|
# Skip over comments and blank lines.
|
||||||
if (/^#/) {
|
if (/^#/ || /^$/) {
|
||||||
next LINE;
|
next LINE;
|
||||||
}
|
}
|
||||||
push (@curvals, $_);
|
push (@curvals, $_);
|
||||||
|
Loading…
Reference in New Issue
Block a user