tests/readlink.py
author Augie Fackler <augie@google.com>
Wed, 11 Apr 2018 17:24:38 -0400
changeset 37593 314f39e5fa86
parent 29485 6a98f9408a50
child 45830 c102b704edb5
permissions -rwxr-xr-x
tests: use `f --newer` instead of `stat -c` in test-fix.t Also increase sleep to two seconds so this test will likely pass on FAT32. Differential Revision: https://phab.mercurial-scm.org/D3252

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