('d:\\pypy_stuff\\buildbot64\\slave\\pypy-c-jit-win-x86-64\\build\\pypy\\module\\_posixsubprocess\\test\\__init__.py', 5, 'Skipped: not on windows')d:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\conftest.py:77: [py3k] only untranslatedd:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\interpreter\test\apptest_function.py:418: XXX issue #2083def test_colors_in_traceback(): import os def division_by_zero(a, b): return ( a + b / 0 # abc ) old_value = os.environ.get('FORCE_COLOR', None) os.environ['FORCE_COLOR'] = '1' try: from _colorize import can_colorize, ANSIColors > assert can_colorize() E assert False E + where False = <function can_colorize at 0x0000028c211b96a0>() ..\build\pypy\interpreter\test\apptest_traceback.py:177: AssertionErrortempfile = 'D:\\SystemTemp\\pytest-of-matti\\pytest-1033\\test_telling0\\tempfile' def test_telling(tempfile): with _io.open(tempfile, "w+", encoding="utf8") as f: p0 = f.tell() f.write("\xff\n") p1 = f.tell() f.write("\xff\n") p2 = f.tell() f.seek(0) assert p0 == 0 > assert p1 == 3 E assert 4 == 3 ..\build\pypy\module\_io\test\apptest_io.py:287: AssertionErrortempfile = 'D:\\SystemTemp\\pytest-of-matti\\pytest-1033\\test_warn_on_dealloc0\\tempfile' def test_warn_on_dealloc(tempfile): > _check_warn_on_dealloc(tempfile, 'wb', buffering=0) ..\build\pypy\module\_io\test\apptest_io.py:376: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = ('D:\\SystemTemp\\pytest-of-matti\\pytest-1033\\test_warn_on_dealloc0\\tempfile', 'wb') kwargs = {'buffering': 0}, gc = <module 'gc' (built-in)> warnings = <module 'warnings' from 'D:\\pypy_stuff\\buildbot64\\slave\\pypy-c-jit-win-x86-64\\build\\lib-python\\3\\warnings.py'> f = None r = "<_io.FileIO name='D:\\\\SystemTemp\\\\pytest-of-matti\\\\pytest-1033\\\\test_warn_on_dealloc0\\\\tempfile' mode='wb' closefd=True>" w = [<warnings.WarningMessage object at 0x0000028c24e6c2f8>], @py_assert2 = None @py_assert5 = '{message : ResourceWarning("unclosed file <_io.FileIO name=\'D:\\\\\\\\SystemTemp\\\\\\\\pytest-of-matti\\\\\\\\pytes...lave\\\\pypy-c-jit-win-x86-64\\\\build\\\\pypy\\\\module\\\\_io\\\\test\\\\apptest_io.py\', lineno : 371, line : None}' @py_assert4 = None @py_format7 = '"<_io.FileIO name=\'D:\\\\\\\\SystemTemp\\\\\\\\pytest-of-matti\\\\\\\\pytest-1033\\\\\\\\test_warn_on_dealloc0\\\\\\...\\\\\\apptest_io.py\\\', lineno : 371, line : None}\' = str(<warnings.WarningMessage object at 0x0000028c24e6c2f8>)\n}' @py_format9 = 'assert "<_io.FileIO name=\'D:\\\\\\\\SystemTemp\\\\\\\\pytest-of-matti\\\\\\\\pytest-1033\\\\\\\\test_warn_on_dealloc...\\\\\\apptest_io.py\\\', lineno : 371, line : None}\' = str(<warnings.WarningMessage object at 0x0000028c24e6c2f8>)\n}' def _check_warn_on_dealloc(*args, **kwargs): import gc import warnings f = open(*args, **kwargs) r = repr(f) gc.collect() with warnings.catch_warnings(record=True) as w: warnings.simplefilter('always') f = None gc.collect() assert len(w) == 1, len(w) > assert r in str(w[0]) E assert "<_io.FileIO name='D:\\\\SystemTemp\\\\pytest-of-matti\\\\pytest-1033\\\\test_warn_on_dealloc0\\\\tempfile' mode='wb' closefd=True>" in '{message : ResourceWarning("unclosed file <_io.FileIO name=\'D:\\\\\\\\SystemTemp\\\\\\\\pytest-of-matti\\\\\\\\pytes...lave\\\\pypy-c-jit-win-x86-64\\\\build\\\\pypy\\\\module\\\\_io\\\\test\\\\apptest_io.py\', lineno : 371, line : None}' E + where '{message : ResourceWarning("unclosed file <_io.FileIO name=\'D:\\\\\\\\SystemTemp\\\\\\\\pytest-of-matti\\\\\\\\pytes...lave\\\\pypy-c-jit-win-x86-64\\\\build\\\\pypy\\\\module\\\\_io\\\\test\\\\apptest_io.py\', lineno : 371, line : None}' = str(<warnings.WarningMessage object at 0x0000028c24e6c2f8>) ..\build\pypy\module\_io\test\apptest_io.py:373: AssertionErrortempfile = 'D:\\SystemTemp\\pytest-of-matti\\pytest-1033\\test_tell_univnewlines0\\tempfile' def test_tell_univnewlines(tempfile): import io import sys NEWLINE = '\r\n' with io.open(tempfile, "w") as fp: fp.write(DATA_CRLF) with io.open(tempfile, "r") as fp: assert repr(fp.newlines) == repr(None) data = fp.readline() pos = fp.tell() if "__pypy__" in sys.modules: > assert repr(fp.newlines) == repr(NEWLINE) E assert "'\\r'" == "'\\r\\n'" E - '\r\n' E ? -- E + '\r' ..\build\pypy\module\_io\test\apptest_io.py:559: AssertionErrord:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\_io\test\apptest_textio.py:447: Requires a result from os.device_encoding(sys.stderr.fileno())def test_incremental_big5hkscs(): import _codecs import _io with open(myfile + '/big5hkscs.txt', 'rb') as fid: uni_str = fid.read() with open(myfile + '/big5hkscs-utf8.txt', 'rb') as fid: utf8str = fid.read() UTF8Reader = _codecs.lookup('utf-8').streamreader for sizehint in [None] + list(range(1, 33)) + [64, 128, 256, 512, 1024]: istream = UTF8Reader(_io.BytesIO(utf8str)) ostream = _io.BytesIO() encoder = IncrementalBig5hkscsEncoder() while 1: if sizehint is not None: data = istream.read(sizehint) else: data = istream.read() if not data: break > e = encoder.encode(data) E UnicodeEncodeError: 'big5hkscs' codec can't encode character '\U0002010c' in position 0: illegal multibyte sequence ..\build\pypy\module\_multibytecodec\test\apptest_incremental.py:261: UnicodeEncodeErrord:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\_pickle\test\apptest_pickle.py:846: only relevant on 32-bit buildsd:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\_socket\test\apptest_socket.py:95: no fileno on windowsd:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\_socket\test\apptest_socket.py:103: no fileno on windowsd:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\_socket\test\apptest_socket.py:310: no recvmsg on win32d:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\_socket\test\apptest_socket.py:361: AF_UNIX not supported.d:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\_socket\test\apptest_socket.py:445: no socketpaird:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\_socket\test\apptest_socket.py:501: no SOCK_NONBLOCKd:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\_socket\test\apptest_socket.py:533: no AF_NETLINK on this platformd:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\_socket\test\apptest_socket.py:543: AF_PACKET needs to be root for testingd:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\_socket\test\apptest_socket.py:588: win32 has additional bufferingd:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\_socket\test\apptest_socket.py:737: no recvmg_into on win32d:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\_socket\test\apptest_socket.py:814: AF_UNIX not supported.d:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\_warnings\test\apptest_warnings.py:84: fails on this version of pytestd:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\_warnings\test\apptest_warnings.py:121: fails on this version of pytestd:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\signal\test\apptest_signal.py:10: need SIGALRMd:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\time\test\apptest_time.py:57: need time.clock_gettime()d:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\time\test\apptest_time.py:67: need time.clock_gettime_ns()d:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\time\test\apptest_time.py:80: need time.clock_gettime()/CLOCK_MONOTONICd:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\time\test\apptest_time.py:91: need time.clock_gettime()/CLOCK_MONOTONICd:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\time\test\apptest_time.py:329: tzset available only under Unixd:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\time\test\apptest_time.py:393: tzset available only under Unixd:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\time\test\apptest_time.py:507: fails on win32d:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\time\test\apptest_time.py:538: fails to encode sd:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\module\time\test\apptest_time.py:656: SIGALRM available only under Unixd:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\objspace\std\test\apptest_stringformat.py:191: the rest of this test is serious nonsense imho, changed only on 2.7.13, and is different on 3.x anyway. We could reproduce it by writing lengthy logic, then get again the reasonable performance by special-casing the exact type 'long'. And all for 2.7.13 only. Let's give up.d:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\objspace\std\test\apptest_stringformat.py:281: no setdefaultencodingd:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\objspace\std\test\apptest_stringformat.py:430: nicely passes on top of CPython but requires > 2GB of RAMd:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\objspace\std\test\apptest_unicode.py:354: Wrong platformd:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\objspace\test\apptest_descriptor.py:75: utf-8 encoding before translation accepts lone surrogates, because it is Python 2.7, but after translation it does not. Moreover, CPython 3.x accepts such unicode attributes anyway. This makes this test half-wrong for now.d:\pypy_stuff\buildbot64\slave\pypy-c-jit-win-x86-64\build\pypy\objspace\test\apptest_descroperation.py:373: fails, works in cpython