tests/readlink.py
author Mads Kiilerich <madski@unity3d.com>
Sun, 02 Mar 2014 18:25:19 +0100
changeset 20636 12580e04cc43
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
tests: add test case for criss cross merge The test do not fit in any existing test file...

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