Changeset 269991 in webkit


Ignore:
Timestamp:
Nov 18, 2020 2:48:09 PM (3 years ago)
Author:
Keith Rollin
Message:

Extend check-for-inappropriate-files-in-framework to check for .tmp files
https://bugs.webkit.org/show_bug.cgi?id=219064
<rdar://problem/71519010>

Reviewed by Alexey Proskuryakov.

Some *.tmp files that were generated from post-processing header files
were appearing in *.framework/Headers directories. The problem doesn't
seem to be occurring any more, but update
check-for-inappropriate-files-in-framework to catch it if it does
again.

  • Scripts/check-for-inappropriate-files-in-framework:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r269990 r269991  
     12020-11-18  Keith Rollin  <krollin@apple.com>
     2
     3        Extend check-for-inappropriate-files-in-framework to check for .tmp files
     4        https://bugs.webkit.org/show_bug.cgi?id=219064
     5        <rdar://problem/71519010>
     6
     7        Reviewed by Alexey Proskuryakov.
     8
     9        Some *.tmp files that were generated from post-processing header files
     10        were appearing in *.framework/Headers directories. The problem doesn't
     11        seem to be occurring any more, but update
     12        check-for-inappropriate-files-in-framework to catch it if it does
     13        again.
     14
     15        * Scripts/check-for-inappropriate-files-in-framework:
     16
    1172020-11-18  Jonathan Bedard  <jbedard@apple.com>
    218
  • trunk/Tools/Scripts/check-for-inappropriate-files-in-framework

    r269310 r269991  
    2929
    3030$INAPPROPRIATE_FILES = {
    31   "JavaScriptCore"  => { "Resources" => ["*.txt", "*.in", "*.idl", "*.h"] },
    32   "WebCore"         => { "Resources" => ["*.txt", "*.in", "*.idl", "*.h"] },
    33   "WebKitLegacy"    => { "Resources" => ["*.txt", "*.in", "*.idl", "*.h"] },
    34   "WebKit"          => { "Resources" => ["*.txt", "*.in", "*.idl", "*.h"] },
     31  "JavaScriptCore" => {
     32    "Headers" => ["*.tmp"],
     33    "Resources" => ["*.txt", "*.in", "*.idl", "*.h"],
     34  },
     35  "WebCore" => {
     36    "Resources" => ["*.txt", "*.in", "*.idl", "*.h"],
     37  },
     38  "WebKitLegacy" => {
     39    "Headers" => ["*.tmp"],
     40    "Resources" => ["*.txt", "*.in", "*.idl", "*.h"],
     41  },
     42  "WebKit" => {
     43    "Headers" => ["*.tmp"],
     44    "Resources" => ["*.txt", "*.in", "*.idl", "*.h"],
     45  },
    3546}
    3647
Note: See TracChangeset for help on using the changeset viewer.