tests/readlink.py
author Brendan Cully <brendan@kublai.com>
Sat, 06 Feb 2010 15:18:36 +0100
changeset 10336 bc9a3bb267fa
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
run-tests: kill daemons on ^C with -j. This is not perfect, but the problem is fundamentally racy.

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