Title: [111771] trunk/Tools
Revision
111771
Author
aes...@apple.com
Date
2012-03-22 15:05:04 -0700 (Thu, 22 Mar 2012)

Log Message

check-for-inappropriate-objc-class-names should ignore the class defined by libarclite.
https://bugs.webkit.org/show_bug.cgi?id=81971

Reviewed by Dan Bernstein.

Xcode will automatically link ObjC binaries against libarclite in some
cases, which defines a class called __ARCLite__.
check-for-inappropriate-objc-class-names shouldn't complain about this
class name.

* Scripts/check-for-inappropriate-objc-class-names:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (111770 => 111771)


--- trunk/Tools/ChangeLog	2012-03-22 22:03:20 UTC (rev 111770)
+++ trunk/Tools/ChangeLog	2012-03-22 22:05:04 UTC (rev 111771)
@@ -1,3 +1,17 @@
+2012-03-22  Andy Estes  <aes...@apple.com>
+
+        check-for-inappropriate-objc-class-names should ignore the class defined by libarclite.
+        https://bugs.webkit.org/show_bug.cgi?id=81971
+
+        Reviewed by Dan Bernstein.
+
+        Xcode will automatically link ObjC binaries against libarclite in some
+        cases, which defines a class called __ARCLite__.
+        check-for-inappropriate-objc-class-names shouldn't complain about this
+        class name.
+
+        * Scripts/check-for-inappropriate-objc-class-names:
+
 2012-03-22  Dirk Pranke  <dpra...@chromium.org>
 
         new-run-webkit-tests blames the wrong test for crashing

Modified: trunk/Tools/Scripts/check-for-inappropriate-objc-class-names (111770 => 111771)


--- trunk/Tools/Scripts/check-for-inappropriate-objc-class-names	2012-03-22 22:03:20 UTC (rev 111770)
+++ trunk/Tools/Scripts/check-for-inappropriate-objc-class-names	2012-03-22 22:05:04 UTC (rev 111771)
@@ -38,6 +38,9 @@
 
 my @allowedPrefixes = @ARGV;
 
+# Xcode will automatically link ObjC binaries against libarclite in some cases, which defines a class called __ARCLite__.
+push(@allowedPrefixes, "__ARCLite");
+
 die "No allowed prefixes passed on the command line" if !@allowedPrefixes;
 
 my $arch = $ENV{'CURRENT_ARCH'};
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to