Changeset 57462 in webkit


Ignore:
Timestamp:
Apr 11, 2010 6:58:51 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-11 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

create-rollout copy needs to be updated to reflect removal of --no-build
https://bugs.webkit.org/show_bug.cgi?id=37425

Removed --no-build and --no-test from the instructions because these
don't exist anymore.

  • Scripts/webkitpy/tool/commands/download_unittest.py:
    • Updated the expected results to reflect the new copy.
  • Scripts/webkitpy/tool/steps/postdiffforrevert.py:
Location:
trunk/WebKitTools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r57461 r57462  
     12010-04-11  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        create-rollout copy needs to be updated to reflect removal of --no-build
     6        https://bugs.webkit.org/show_bug.cgi?id=37425
     7
     8        Removed --no-build and --no-test from the instructions because these
     9        don't exist anymore.
     10
     11        * Scripts/webkitpy/tool/commands/download_unittest.py:
     12            - Updated the expected results to reflect the new copy.
     13        * Scripts/webkitpy/tool/steps/postdiffforrevert.py:
     14
    1152010-04-11  Sheriff Bot  <webkit.review.bot@gmail.com>
    216
  • trunk/WebKitTools/Scripts/webkitpy/tool/commands/download_unittest.py

    r57137 r57462  
    122122
    123123    def test_create_rollout(self):
    124         expected_stderr = "Preparing rollout for bug 42.\nUpdating working directory\nMOCK create_bug\nbug_title: REGRESSION(r852): Reason\nbug_description: http://trac.webkit.org/changeset/852 broke the build:\nReason\nRunning prepare-ChangeLog\nMOCK add_patch_to_bug: bug_id=None, description=ROLLOUT of r852, mark_for_review=False, mark_for_commit_queue=True, mark_for_landing=False\n-- Begin comment --\nAny committer can land this patch automatically by marking it commit-queue+.  The commit-queue will build and test the patch before landing to ensure that the rollout will be successful.  This process takes approximately 15 minutes.\n\nIf you would like to land the rollout faster, you can use the following command:\n\n  webkit-patch land-attachment ATTACHMENT_ID --no-build --no-test --ignore-builders\n\nwhere ATTACHMENT_ID is the ID of this attachment.\n-- End comment --\n"
     124        expected_stderr = """Preparing rollout for bug 42.
     125Updating working directory
     126MOCK create_bug
     127bug_title: REGRESSION(r852): Reason
     128bug_description: http://trac.webkit.org/changeset/852 broke the build:
     129Reason
     130Running prepare-ChangeLog
     131MOCK add_patch_to_bug: bug_id=None, description=ROLLOUT of r852, mark_for_review=False, mark_for_commit_queue=True, mark_for_landing=False
     132-- Begin comment --
     133Any committer can land this patch automatically by marking it commit-queue+.  The commit-queue will build and test the patch before landing to ensure that the rollout will be successful.  This process takes approximately 15 minutes.
     134
     135If you would like to land the rollout faster, you can use the following command:
     136
     137  webkit-patch land-attachment ATTACHMENT_ID --ignore-builders
     138
     139where ATTACHMENT_ID is the ID of this attachment.
     140-- End comment --
     141"""
    125142        self.assert_execute_outputs(CreateRollout(), [852, "Reason"], options=self._default_options(), expected_stderr=expected_stderr)
    126143
  • trunk/WebKitTools/Scripts/webkitpy/tool/steps/postdiffforrevert.py

    r57137 r57462  
    4141If you would like to land the rollout faster, you can use the \
    4242following command:\n\n\
    43   webkit-patch land-attachment ATTACHMENT_ID --no-build --no-test --ignore-builders\n\n\
     43  webkit-patch land-attachment ATTACHMENT_ID --ignore-builders\n\n\
    4444where ATTACHMENT_ID is the ID of this attachment."
    4545        self._tool.bugs.add_patch_to_bug(
Note: See TracChangeset for help on using the changeset viewer.