tests/readlink.py
author Matt Mackall <mpm@selenic.com>
Thu, 28 Apr 2016 16:38:15 -0500
branchstable
changeset 29041 b962ae0a0a05
parent 25660 328739ea70c3
child 29175 7bcfb9090c86
permissions -rwxr-xr-x
tests: test a variety of cache invariants We've historically had a problem maintaining the expected invariants on our caches, especially when introducing new caches. This tests documents the invariants and exercises them across most of our existing cache files.

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