tests/readlink.py
author Matt Mackall <mpm@selenic.com>
Tue, 12 Jul 2011 16:22:36 -0500
changeset 14857 5b46c16e7121
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
eol: fix silly test-gendoc breakage by escaping control characters

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