Changeset 272800 in webkit
- Timestamp:
- Feb 12, 2021, 12:38:03 PM (5 years ago)
- Location:
- trunk/Tools
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r272793 r272800 1 2021-02-12 Jonathan Bedard <jbedard@apple.com> 2 3 [webkit-patch] Post both revision and identifier to bugzilla 4 https://bugs.webkit.org/show_bug.cgi?id=221829 5 <rdar://problem/74282619> 6 7 Reviewed by Aakash Jain. 8 9 * Scripts/webkitpy/tool/commands/download_unittest.py: 10 * Scripts/webkitpy/tool/commands/upload_unittest.py: 11 * Scripts/webkitpy/tool/comments.py: 12 (bug_comment_from_svn_revision): Include subversion revision. 13 * Scripts/webkitpy/tool/steps/closebugforlanddiff_unittest.py: 14 (CloseBugForLandDiffTest.test_empty_state): 15 1 16 2021-02-12 Jonathan Bedard <jbedard@apple.com> 2 17 -
trunk/Tools/Scripts/webkitpy/tool/commands/download_unittest.py
r272782 r272800 195 195 MOCK run_and_throw_if_fail: ['mock-run-webkit-tests', '--quiet'], cwd=/mock-checkout 196 196 Committed r49824: <https://commits.webkit.org/r49824> 197 Committed 5@main: <https://commits.webkit.org/5@main>197 Committed r49824 (5@main): <https://commits.webkit.org/5@main> 198 198 No bug id provided. 199 199 """ … … 324 324 MOCK bug comment: bug_id=50000, cc=None, see_also=None 325 325 --- Begin comment --- 326 Committed 5@main: <https://commits.webkit.org/5@main>326 Committed r49824 (5@main): <https://commits.webkit.org/5@main> 327 327 --- End comment --- 328 328 … … 495 495 Reason 496 496 497 Committed 5@main: <https://commits.webkit.org/5@main>'497 Committed r49824 (5@main): <https://commits.webkit.org/5@main>' 498 498 """ 499 499 with self.mock_svn_remote(): … … 515 515 Reason 516 516 517 Committed 5@main: <https://commits.webkit.org/5@main>'517 Committed r49824 (5@main): <https://commits.webkit.org/5@main>' 518 518 MOCK reopen_bug 50005 with comment 'Reverted r852 and r963 for reason: 519 519 520 520 Reason 521 521 522 Committed 5@main: <https://commits.webkit.org/5@main>'522 Committed r49824 (5@main): <https://commits.webkit.org/5@main>' 523 523 """ 524 524 with self.mock_svn_remote(): … … 538 538 Reason 539 539 540 Committed 5@main: <https://commits.webkit.org/5@main>'540 Committed r49824 (5@main): <https://commits.webkit.org/5@main>' 541 541 MOCK reopen_bug 50005 with comment 'Reverted r852, r963, and r3001 for reason: 542 542 543 543 Reason 544 544 545 Committed 5@main: <https://commits.webkit.org/5@main>'545 Committed r49824 (5@main): <https://commits.webkit.org/5@main>' 546 546 MOCK reopen_bug 50004 with comment 'Reverted r852, r963, and r3001 for reason: 547 547 548 548 Reason 549 549 550 Committed 5@main: <https://commits.webkit.org/5@main>'550 Committed r49824 (5@main): <https://commits.webkit.org/5@main>' 551 551 """ 552 552 with self.mock_svn_remote(): … … 566 566 Reason 567 567 568 Committed 5@main: <https://commits.webkit.org/5@main>'568 Committed r49824 (5@main): <https://commits.webkit.org/5@main>' 569 569 MOCK reopen_bug 50005 with comment 'Reverted r852, r963, and r999 for reason: 570 570 571 571 Reason 572 572 573 Committed 5@main: <https://commits.webkit.org/5@main>'573 Committed r49824 (5@main): <https://commits.webkit.org/5@main>' 574 574 """ 575 575 with self.mock_svn_remote(): -
trunk/Tools/Scripts/webkitpy/tool/commands/upload_unittest.py
r272782 r272800 203 203 MOCK comment 204 204 205 Committed 5@main: <https://commits.webkit.org/5@main>205 Committed r9876 (5@main): <https://commits.webkit.org/5@main> 206 206 --- End comment --- 207 207 -
trunk/Tools/Scripts/webkitpy/tool/comments.py
r272782 r272800 38 38 repo = remote.Svn('https://svn.webkit.org/repository/webkit') 39 39 identifier = str(repo.commit(revision=svn_revision)).replace('trunk', 'main') 40 return "Committed {}: <{}>".format(identifier, urls.view_identifier_url(identifier))40 return 'Committed r{} ({}): <{}>'.format(svn_revision, identifier, urls.view_identifier_url(identifier)) 41 41 42 42 -
trunk/Tools/Scripts/webkitpy/tool/steps/closebugforlanddiff_unittest.py
r272782 r272800 60 60 self.assertEqual( 61 61 captured.root.log.getvalue(), 62 'Committed 5@main: <https://commits.webkit.org/5@main>\nNo bug id provided.\n'62 'Committed r49824 (5@main): <https://commits.webkit.org/5@main>\nNo bug id provided.\n' 63 63 )
Note:
See TracChangeset
for help on using the changeset viewer.