tests/readlink.py
author Matt Mackall <mpm@selenic.com>
Thu, 28 Jan 2010 22:44:25 -0600
changeset 10288 e0121ad90b57
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
zeroconf: flag third-party Zeroconf.py for ignore in check-code

#!/usr/bin/env python

import errno, os, sys

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

sys.exit(0)