tests/readlink.py
author Danek Duvall <danek.duvall@oracle.com>
Mon, 21 Jul 2014 11:27:24 -0700
branchstable
changeset 21930 a5168eb9b2bc
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
tests: cat error messages are different on Solaris

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