tests/readlink.py
author Matt Mackall <mpm@selenic.com>
Fri, 02 May 2014 00:23:58 -0500
changeset 21221 e3ca21e4d05f
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
tests: use locate to find files for pyflakes check Based on a suggestion by Yuya Nishihara

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