tests/readlink.py
author Boris Feld <boris.feld@octobus.net>
Mon, 16 Jul 2018 16:46:32 +0200
changeset 38712 70a4289896b0
parent 29485 6a98f9408a50
child 45830 c102b704edb5
permissions -rwxr-xr-x
revset: add larger test for heads(ancestors(…)) It is important to not regress on this benchmark so we move it into the "base" file. And we add another benchmark with more than two revisions.

#!/usr/bin/env python

from __future__ import absolute_import, print_function

import errno
import os
import 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, '->', f, 'not a symlink')

sys.exit(0)