tests/readlink.py
author Raphaël Gomès <rgomes@octobus.net>
Wed, 23 Jun 2021 14:34:55 +0200
changeset 47571 e9c5c368be17
parent 45830 c102b704edb5
child 48875 6000f5b25c9b
permissions -rwxr-xr-x
run-tests: also catch double-escapes for $TESTTMP On Windows the `$TESTTMP` string "repr" is different than its value, because `\` become `\\`. We introduce a new `$STR_REPR_TESTTMP` substitution to match that too. Differential Revision: https://phab.mercurial-scm.org/D11001

#!/usr/bin/env python3

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)