tests/readlink.py
author Martin von Zweigbergk <martinvonz@google.com>
Thu, 12 Nov 2020 08:29:55 -0800
changeset 45837 2eb8ad899fa6
parent 45830 c102b704edb5
child 48875 6000f5b25c9b
permissions -rwxr-xr-x
errors: raise InputError in fancyopts If a value of wrong type is passed to a command line flag, that's cleary an InputError. Differential Revision: https://phab.mercurial-scm.org/D9308

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