mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
benchtests: skip over blank lines in benchmark input files
This commit is contained in:
@ -83,8 +83,8 @@ LINE:while (<INPUTS>) {
|
||||
}
|
||||
}
|
||||
|
||||
# Skip over comments.
|
||||
if (/^#/) {
|
||||
# Skip over comments and blank lines.
|
||||
if (/^#/ || /^$/) {
|
||||
next LINE;
|
||||
}
|
||||
push (@curvals, $_);
|
||||
|
Reference in New Issue
Block a user