Mercurial > hg
view tests/heredoctest.py @ 15750:03d04296cfab stable
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
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Fri, 30 Dec 2011 15:47:58 -0600 |
parents | 474279be5add |
children | 5635a4017061 |
line wrap: on
line source
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)