tests/readlink.py
author timeless <timeless@mozdev.org>
Tue, 22 Dec 2015 11:05:05 +0000
changeset 27498 f3398f1f70a0
parent 25660 328739ea70c3
child 29175 7bcfb9090c86
permissions -rwxr-xr-x
tests: add execute bit and fix shbang line

#!/usr/bin/env python

import errno, os, 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, 'not a symlink'

sys.exit(0)