tests/readlink.py
author Martin von Zweigbergk <martinvonz@google.com>
Thu, 14 Sep 2017 11:16:47 -0700
branchstable
changeset 33675 b5d7e7d5c573
parent 29485 6a98f9408a50
child 45849 c102b704edb5
permissions -rwxr-xr-x
tests: add test for issue5678 In addition to a test case for the direct problem described in the bug report, this also adds a test case showing how obsmarkers can also get lost when not using generaldelta. Differential Revision: https://phab.mercurial-scm.org/D714

#!/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)