tests/readlink.py
author Pulkit Goyal <7895pulkit@gmail.com>
Sat, 25 Jul 2020 14:41:20 +0530
changeset 45318 ab57793dec5b
parent 29485 6a98f9408a50
child 45849 c102b704edb5
permissions -rwxr-xr-x
largefiles: override merge.emptyactions() to include `lfmr` I found it weird that we were not already doing this. I encountered this while using `emptyactions()` in mergeresult() class. Differential Revision: https://phab.mercurial-scm.org/D8835

#!/usr/bin/env python

from __future__ import absolute_import, print_function

import errno
import os
import sys

for f in sys.argv[1:]:
    try:
        print(f, '->', os.readlink(f))
    except OSError as err:
        if err.errno != errno.EINVAL:
            raise
        print(f, '->', f, 'not a symlink')

sys.exit(0)