tests/readlink.py
author Boris Feld <boris.feld@octobus.net>
Thu, 03 Jan 2019 22:13:28 +0100
changeset 41190 c3e5ce3a9483
parent 29485 6a98f9408a50
child 45849 c102b704edb5
permissions -rwxr-xr-x
contrib: update window title when possible in perf-revlog-write-plot.py This is useful when comparing multiple graphs.

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