tests/readlink.py
author Boris Feld <boris.feld@octobus.net>
Thu, 20 Dec 2018 12:17:15 +0100
changeset 41034 cca12a31ede5
parent 29485 6a98f9408a50
child 45830 c102b704edb5
permissions -rwxr-xr-x
revlog: add some direct testing of the slicing logic This test check slicing backed by an actual revlog. It will test the C version of slicing (if the test are run with the C extensions).

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