Changeset 167834 in webkit


Ignore:
Timestamp:
Apr 25, 2014 4:48:10 PM (10 years ago)
Author:
jcraig@apple.com
Message:

Set prepare-Changelog flag so that it no longer runs check-webkit-style by default
https://bugs.webkit.org/show_bug.cgi?id=132209

Reviewed by Daniel Bates.

Set default to --no-style to avoid additional spew from false positives in check-webkit-style.
Run check-webkit-style before generating changelogs to avoid additional spurious errors.

  • Scripts/prepare-ChangeLog:

(main):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r167819 r167834  
     12014-04-25  James Craig  <jcraig@apple.com>
     2
     3        Set prepare-Changelog flag so that it no longer runs check-webkit-style by default
     4        https://bugs.webkit.org/show_bug.cgi?id=132209
     5
     6        Reviewed by Daniel Bates.
     7
     8        Set default to --no-style to avoid additional spew from false positives in check-webkit-style.
     9        Run check-webkit-style before generating changelogs to avoid additional spurious errors.
     10
     11        * Scripts/prepare-ChangeLog:
     12        (main):
     13
    1142014-04-25  Michael Saboff  <msaboff@apple.com>
    215
  • trunk/Tools/Scripts/prepare-ChangeLog

    r167753 r167834  
    129129    my $gitIndex = "";
    130130    my $gitReviewer = "";
    131     my $checkWebKitStyle = 1;
     131    my $checkWebKitStyle;
    132132    my $openChangeLogs = 0;
    133133    my $writeChangeLogs = 1;
     
    169169    }
    170170
     171    if ($checkWebKitStyle) {
     172        print STDERR "  Running check-webkit-style.\n  ";
     173        system "$FindBin::Bin/check-webkit-style";
     174    }
     175
    171176    die "--git-commit and --git-index are incompatible." if ($gitIndex && $gitCommit);
    172177
     
    228233        printDiff($changedFiles, $gitCommit, $gitIndex, $mergeBase);
    229234    }
    230 
    231     if ($checkWebKitStyle) {
    232         print STDERR "  Running check-webkit-style.\n  ";
    233         system "$FindBin::Bin/check-webkit-style";
    234     } 
    235235
    236236    # Open ChangeLogs.
Note: See TracChangeset for help on using the changeset viewer.