tests/readlink.py
author Durham Goode <durham@fb.com>
Tue, 14 Oct 2014 13:23:52 -0700
changeset 22951 6c86c673dde6
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
obsolete: add createmarkers option The basic obsolete option is allowing the creation of obsolete markers. This does not enable other features, such as allowing unstable commits or exchanging obsolete markers.

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