tests/failfilemerge.py
author Yuya Nishihara <yuya@tcha.org>
Sun, 22 Mar 2020 18:40:04 +0900
changeset 44586 0424a9134bcf
parent 43076 2372284d9457
child 45681 a736ab681b78
permissions -rw-r--r--
osutil: move declaration to top of the scope Otherwise the build would fail with -Werror=declaration-after-statement.

# extension to emulate interrupting filemerge._filemerge

from __future__ import absolute_import

from mercurial import (
    error,
    extensions,
    filemerge,
)


def failfilemerge(
    filemergefn, premerge, repo, wctx, 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)