tests/readlink.py
author Adrian Buehlmann <adrian@cadifra.com>
Thu, 03 Jun 2010 13:58:00 +0200
changeset 11295 07e425d63dbd
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
tests: use --debug on test-clone

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