tests/readlink.py
author Pierre-Yves David <pierre-yves.david@fb.com>
Fri, 14 Mar 2014 16:26:50 -0700
changeset 20758 98d6c7954057
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
getgraphlogrevs: do not convert smartset to baseset We are now sure that revs is a smartset. We remove the baseset call that would defeat any lazyness.

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