Mercurial > hg-stable
view tests/readlink.py @ 23628:7d7a4848fff4
test-hgignore: add testing for ui.ignore
I couldn't find any tests for this, and we're going to make changes here in
upcoming patches.
author | Siddharth Agarwal <sid0@fb.com> |
---|---|
date | Wed, 17 Dec 2014 18:53:38 -0800 |
parents | 08a0f04b56bd |
children | 328739ea70c3 |
line wrap: on
line source
#!/usr/bin/env python import errno, os, sys for f in sys.argv[1:]: try: print f, '->', os.readlink(f) except OSError, err: if err.errno != errno.EINVAL: raise print f, 'not a symlink' sys.exit(0)