diff options
author | Ben Murdoch <benm@google.com> | 2009-08-11 17:01:47 +0100 |
---|---|---|
committer | Ben Murdoch <benm@google.com> | 2009-08-11 18:21:02 +0100 |
commit | 0bf48ef3be53ddaa52bbead65dfd75bf90e7a2b5 (patch) | |
tree | 2943df35f62d885c89d01063cc528dd73b480fea /WebKitTools/Scripts/check-for-global-initializers | |
parent | 7e7a70bfa49a1122b2597a1e6367d89eb4035eca (diff) | |
download | external_webkit-0bf48ef3be53ddaa52bbead65dfd75bf90e7a2b5.zip external_webkit-0bf48ef3be53ddaa52bbead65dfd75bf90e7a2b5.tar.gz external_webkit-0bf48ef3be53ddaa52bbead65dfd75bf90e7a2b5.tar.bz2 |
Merge in WebKit r47029.
Diffstat (limited to 'WebKitTools/Scripts/check-for-global-initializers')
-rwxr-xr-x | WebKitTools/Scripts/check-for-global-initializers | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/WebKitTools/Scripts/check-for-global-initializers b/WebKitTools/Scripts/check-for-global-initializers index 88894be..e6c1a69 100755 --- a/WebKitTools/Scripts/check-for-global-initializers +++ b/WebKitTools/Scripts/check-for-global-initializers @@ -57,7 +57,7 @@ my $scriptAge = -M $0; my $list = $ENV{"LINK_FILE_LIST_${variant}_${arch}"}; if (!open LIST, $list) { - print "Could not open $list\n"; + print "ERROR: Could not open $list\n"; exit 1; } @@ -73,7 +73,7 @@ for my $file (sort @files) { next if defined $fileAge && $fileAge > $buildTimestampAge; } if (!open NM, "(nm '$file' | sed 's/^/STDOUT:/') 2>&1 |") { - print "Could not open $file\n"; + print "ERROR: Could not open $file\n"; $sawError = 1; next; } @@ -103,18 +103,18 @@ for my $file (sort @files) { next if $shortName eq "CachedResource.o"; next if $shortName eq "Frame.o"; next if $shortName eq "JSCustomSQLTransactionCallback.o"; - next if $shortName eq "JSEventListener.o"; + next if $shortName eq "JSLazyEventListener.o"; next if $shortName eq "Node.o"; next if $shortName eq "Page.o"; next if $shortName eq "Range.o"; + next if $shortName eq "RenderBlockLineLayout.o"; next if $shortName eq "RenderObject.o"; next if $shortName eq "SubresourceLoader.o"; next if $shortName eq "SVGElementInstance.o"; - next if $shortName eq "bidi.o"; } } - print "$shortName has a global initializer in it! ($file)\n"; + print "ERROR: $shortName has a global initializer in it! ($file)\n"; $sawError = 1; } } |