Changeset 53378 in webkit


Ignore:
Timestamp:
Jan 17, 2010 4:36:31 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-17 Adam Barth <abarth@webkit.org>

Reviewed by Darin Adler.

style-queue should include instructions for how to file bugs against check-webkit-style
https://bugs.webkit.org/show_bug.cgi?id=32345

Added some text to the error message asking folks to file bugs against
false positives.

  • Scripts/webkitpy/commands/queues.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r53374 r53378  
     12010-01-17  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        style-queue should include instructions for how to file bugs against check-webkit-style
     6        https://bugs.webkit.org/show_bug.cgi?id=32345
     7
     8        Added some text to the error message asking folks to file bugs against
     9        false positives.
     10
     11        * Scripts/webkitpy/commands/queues.py:
     12
    1132010-01-17  Chris Jerdonek  <cjerdonek@webkit.org>
    214
  • trunk/WebKitTools/Scripts/webkitpy/commands/queues.py

    r53298 r53378  
    287287        if is_svn_apply:
    288288            QueueEngine.exit_after_handled_error(script_error)
    289         message = "Attachment %s did not pass %s:\n\n%s" % (state["patch"].id(), cls.name, script_error.message_with_output(output_limit=3*1024))
     289        message = "Attachment %s did not pass %s:\n\n%s\n\nIf any of these errors are false positives, please file a bug against check-webkit-style." % (state["patch"].id(), cls.name, script_error.message_with_output(output_limit=3*1024))
    290290        tool.bugs.post_comment_to_bug(state["patch"].bug_id(), message, cc=cls.watchers)
    291291        exit(1)
Note: See TracChangeset for help on using the changeset viewer.