tests/readlink.py
author Mads Kiilerich <madski@unity3d.com>
Tue, 15 Jan 2013 20:54:57 +0100
changeset 18380 a4d7fd7ad1f7
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
serve: don't send any content headers with 304 responses Fixes HTTP protocol violation introduced in cf5c76017e11. 'hg serve' would show a stacktrace when loading pages that not had been modified. There was test coverage for this, but the wrong response headers wasn't shown and thus not detected.

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