| Summary: | REGRESSION (r167751): svn-create-patch is very slow | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Alexey Proskuryakov <ap> | ||||
| Component: | Tools / Tests | Assignee: | Sam Weinig <sam> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | commit-queue, dbates, jcraig, sam | ||||
| Priority: | P2 | ||||||
| Version: | 528+ (Nightly build) | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Bug Depends on: | 131115 | ||||||
| Bug Blocks: | |||||||
| Attachments: |
|
||||||
|
Description
Alexey Proskuryakov
2014-04-28 13:32:56 PDT
Weren't you one of the people who suggested running check-webkit-style should be the default? I don't think this bug is actionable unless you're requesting we change that. There is a --no-style flag that you can call or add as a default parameter to your bash profile. IOW, this is not any slower than running svn-create-patch + check-webkit-style. If your issue is that check-webkit-style is too slow, that seems like another matter. Which are you requesting? > Weren't you one of the people who suggested running check-webkit-style should be the default? If I was, this demonstrates that this was not such a good idea. I didn't know that check-webkit-style was so slow and buggy. Another use case where this is very annoying is running svn-create-patch to simply see what the current state of the tree is (what did I do?) > Which are you requesting? Given the current state of check-webkit-style, seems like it should not be invoked by svn-create-patch by default. Changing bash profile on every machine just to make svn-create-patch not slow doesn't seem like the right workaround. Created attachment 230329 [details]
Patch
(In reply to comment #2) > IOW, this is not any slower than running svn-create-patch + check-webkit-style. If your issue is that check-webkit-style is too slow, that seems like another matter. Which are you requesting? The real issue here is that svn-create-patch + check-webkit-style is not everyone's workflow. I use svn-create-patch to stash files away all the time, and don't need a style check run. Comment on attachment 230329 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=230329&action=review > Tools/Scripts/svn-create-patch:80 > +my $checkWebKitStyle = 0; This is used as a boolean, so you can just remove " = 1" instead of setting it to 0. Committed r167939: <http://trac.webkit.org/changeset/167939> (In reply to comment #6) > (From update of attachment 230329 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=230329&action=review > > > Tools/Scripts/svn-create-patch:80 > > +my $checkWebKitStyle = 0; > > This is used as a boolean, so you can just remove " = 1" instead of setting it to 0. I prefer it to be more explicit. |