tests/fakemergerecord.py
author Augie Fackler <raf@durin42.com>
Tue, 22 Aug 2017 14:12:03 -0400
changeset 33892 78f644fdaa2a
parent 32337 46ba2cdda476
child 36173 8173eeb69fb3
permissions -rw-r--r--
hgperf: update to conform with import style checks

# Extension to write out fake unsupported records into the merge state
#
#

from __future__ import absolute_import

from mercurial import (
    merge,
    registrar,
)

cmdtable = {}
command = registrar.command(cmdtable)

@command('fakemergerecord',
         [('X', 'mandatory', None, 'add a fake mandatory record'),
          ('x', 'advisory', None, 'add a fake advisory record')], '')
def fakemergerecord(ui, repo, *pats, **opts):
    with repo.wlock():
        ms = merge.mergestate.read(repo)
        records = ms._makerecords()
        if opts.get('mandatory'):
            records.append(('X', 'mandatory record'))
        if opts.get('advisory'):
            records.append(('x', 'advisory record'))
        ms._writerecords(records)