tests/readlink.py
author Simon Sapin <simon.sapin@octobus.net>
Tue, 01 Jun 2021 16:55:59 +0200
changeset 47352 9d58e54b5966
parent 45830 c102b704edb5
child 48875 6000f5b25c9b
permissions -rwxr-xr-x
dirstate-v2: Drop parent directory cache when removing a dirstate node The premise of the directory cache is that the dirstate contains child nodes for every entry that `read_dir` would return. When removing nodes, that may not be the case anymore so the cache should be invalidated. Differential Revision: https://phab.mercurial-scm.org/D10829

#!/usr/bin/env python3

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)