view tests/readlink.py @ 27132:baa7571f40c5

merge.recordupdates: mark 'a' files as added unconditionally See the previous patch for why we do this.
author Siddharth Agarwal <sid0@fb.com>
date Tue, 24 Nov 2015 15:26:51 -0800
parents 328739ea70c3
children 7bcfb9090c86
line wrap: on
line source

#!/usr/bin/env python

import errno, os, sys

for f in sys.argv[1:]:
    try:
        print f, '->', os.readlink(f)
    except OSError as err:
        if err.errno != errno.EINVAL:
            raise
        print f, 'not a symlink'

sys.exit(0)