tests/heredoctest.py
author Matt Mackall <mpm@selenic.com>
Fri, 30 Dec 2011 15:47:58 -0600
branchstable
changeset 15750 03d04296cfab
parent 15398 474279be5add
child 15434 5635a4017061
permissions -rw-r--r--
convert: improve exception reporting for SVN logstream - catch all exceptions - pickle a stringified version of the exception - use a normal abort Hopefully this will result in less mysterious convert exceptions

import doctest, tempfile, os, sys

if __name__ == "__main__":
    if 'TERM' in os.environ:
        del os.environ['TERM']

    fd, name = tempfile.mkstemp(suffix='hg-tst')

    try:
        os.write(fd, sys.stdin.read())
        os.close(fd)
        failures, _ = doctest.testfile(name, module_relative=False)
        if failures:
            sys.exit(1)
    finally:
        os.remove(name)