Changeset 240438 in webkit


Ignore:
Timestamp:
Jan 24, 2019 9:30:10 AM (5 years ago)
Author:
Michael Catanzaro
Message:

test_exporter.py: webkitpy.common.system.executive.ScriptError from create_branch_with_patch
https://bugs.webkit.org/show_bug.cgi?id=193746

Reviewed by Youenn Fablet.

It calls 'git apply --index --abort', but --abort is not a valid argument to 'git apply',
so we'd best just not call it.

  • Scripts/webkitpy/w3c/test_exporter.py:

(WebPlatformTestExporter.create_branch_with_patch):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r240437 r240438  
     12019-01-24  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        test_exporter.py: webkitpy.common.system.executive.ScriptError from create_branch_with_patch
     4        https://bugs.webkit.org/show_bug.cgi?id=193746
     5
     6        Reviewed by Youenn Fablet.
     7
     8        It calls 'git apply --index --abort', but --abort is not a valid argument to 'git apply',
     9        so we'd best just not call it.
     10
     11        * Scripts/webkitpy/w3c/test_exporter.py:
     12        (WebPlatformTestExporter.create_branch_with_patch):
     13
    1142019-01-24  Ross Kirsling  <ross.kirsling@sony.com>
    215
  • trunk/Tools/Scripts/webkitpy/w3c/test_exporter.py

    r234856 r240438  
    294294        except Exception as e:
    295295            _log.warning(e)
    296             self._git.apply_mail_patch(['--abort'])
    297296            return False
    298297        self._git.commit(['-a', '-m', self._commit_message])
Note: See TracChangeset for help on using the changeset viewer.