regrtest: log FS and locale encodings

This commit is contained in:
Victor Stinner 2016-09-08 21:46:56 -07:00
parent f8cb8a16a3
commit b96ef55d49
1 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,6 @@
import datetime import datetime
import faulthandler import faulthandler
import locale
import os import os
import platform import platform
import random import random
@ -392,7 +393,10 @@ class Regrtest:
"%s-endian" % sys.byteorder) "%s-endian" % sys.byteorder)
print("== ", "hash algorithm:", sys.hash_info.algorithm, print("== ", "hash algorithm:", sys.hash_info.algorithm,
"64bit" if sys.maxsize > 2**32 else "32bit") "64bit" if sys.maxsize > 2**32 else "32bit")
print("== ", os.getcwd()) print("== cwd:", os.getcwd())
print("== encodings: locale=%s, FS=%s"
% (locale.getpreferredencoding(False),
sys.getfilesystemencoding()))
print("Testing with flags:", sys.flags) print("Testing with flags:", sys.flags)
if self.ns.randomize: if self.ns.randomize: