view tests/failfilemerge.py @ 33062:e21b750c9b9e

debugrevlog: align chain length, reach, and compression ratio I think this is what the max(...) exists for.
author Yuya Nishihara <yuya@tcha.org>
date Mon, 26 Jun 2017 22:27:34 +0900
parents 318a24b52eeb
children c0ce60459d84
line wrap: on
line source

# extension to emulate interrupting filemerge._filemerge

from __future__ import absolute_import

from mercurial import (
    error,
    extensions,
    filemerge,
)

def failfilemerge(filemergefn,
                  premerge, repo, mynode, orig, fcd, fco, fca, labels=None):
    raise error.Abort("^C")
    return filemergefn(premerge, repo, mynode, orig, fcd, fco, fca, labels)

def extsetup(ui):
    extensions.wrapfunction(filemerge, '_filemerge',
                            failfilemerge)