Mercurial > hg-stable
changeset 29282:89822d7a9d5f
run-tests: add support for RTUNICODEPEDANTRY environment variable
based on 73e4a02e6d23
author | timeless <timeless@mozdev.org> |
---|---|
date | Tue, 05 Apr 2016 01:35:58 +0000 |
parents | 9ac309946df9 |
children | 14eee72c8d52 |
files | tests/run-tests.py |
diffstat | 1 files changed, 7 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/run-tests.py Fri May 27 05:24:45 2016 +0000 +++ b/tests/run-tests.py Tue Apr 05 01:35:58 2016 +0000 @@ -69,6 +69,13 @@ from xml.dom import minidom import unittest +if os.environ.get('RTUNICODEPEDANTRY', False): + try: + reload(sys) + sys.setdefaultencoding("undefined") + except NameError: + pass + osenvironb = getattr(os, 'environb', os.environ) processlock = threading.Lock()