Tools/ChangeLog

 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 NOBODY (OOPS!).
 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
316 Crash in platform/mac/accessibility/table-visible-rows.html
167827

Tools/Scripts/prepare-ChangeLog

@@sub main()
128128 my $gitCommit = 0;
129129 my $gitIndex = "";
130130 my $gitReviewer = "";
131  my $checkWebKitStyle = 1;
 131 my $checkWebKitStyle;
132132 my $openChangeLogs = 0;
133133 my $writeChangeLogs = 1;
134134 my $showHelp = 0;

@@sub main()
168168 return 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
173178 isSVN() || isGit() || die "Couldn't determine your version control system.";

@@sub main()
228233 printDiff($changedFiles, $gitCommit, $gitIndex, $mergeBase);
229234 }
230235
231  if ($checkWebKitStyle) {
232  print STDERR " Running check-webkit-style.\n ";
233  system "$FindBin::Bin/check-webkit-style";
234  }
235 
236236 # Open ChangeLogs.
237237 if ($openChangeLogs && @$changeLogs) {
238238 openChangeLogs($changeLogs);
167823