On 09/05/17 21:32, Yury V. Zaytsev wrote:

So, PyPy builds again, high five! :-) Only PyPy3 bails out while compiling the TCL/TK extension, but the problem is a different one now.

That is due to a bug in py3.5; os.stat is not filling in st.st_ino, st.st_dev so when cffi checks os.path.samefile the check fails

It seems own tests are taking a very long time on this machine. I have explored using jom.exe  (https://github.com/qt-labs/jom ) instead of nmake to allow parallel compilation, which reduces my run of  rpython's translator\c\test\test_typed.py from ~700 secs to ~600 secs, where on the same machine it is under 200 secs with linux. Note that the buildbot requires over 2800 secs for the same test ( see http://buildbot.pypy.org/builders/own-win-x86-32/builds/1395/steps/shell_6/logs/stdio )

A comparison using the pytest --duration flag on my machine can be seem here  https://gist.github.com/mattip/d989b1e21a7432f97ec2011ab0074708, totally different tests "star" in the slowest role between the platforms

Matti