mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-23 17:53:37 +08:00
Fix spurious conform test failures
This commit is contained in:
parent
ae5eae7cfc
commit
fddb87425a
@ -1,3 +1,8 @@
|
||||
2015-07-27 Andreas Schwab <schwab@suse.de>
|
||||
|
||||
* conform/conformtest.pl (checknamespace): Filter out string
|
||||
literals while tokenizing.
|
||||
|
||||
2015-07-26 Chung-Lin Tang <cltang@codesourcery.com>
|
||||
|
||||
* sysdeps/nios2/dl-sysdep.h (DL_EXTERN_PROTECTED_DATA): Define.
|
||||
|
@ -275,9 +275,8 @@ sub checknamespace {
|
||||
} else {
|
||||
# We have to tokenize the line.
|
||||
my($str) = $_;
|
||||
my($index) = 0;
|
||||
my($len) = length ($str);
|
||||
|
||||
$str =~ s/"[^"]*"//g;
|
||||
foreach $token (split(/[^a-zA-Z0-9_]/, $str)) {
|
||||
if ($token ne "") {
|
||||
newtoken ($token, @allow);
|
||||
|
Loading…
Reference in New Issue
Block a user