[pypy-svn] r34095 - pypy/dist/pypy/jit/codegen/llvm
ericvrp at codespeak.net
ericvrp at codespeak.net
Fri Nov 3 13:36:34 CET 2006
Author: ericvrp
Date: Fri Nov 3 13:36:33 2006
New Revision: 34095
Modified:
pypy/dist/pypy/jit/codegen/llvm/llvmjit.py
Log:
This change (or probably the os.system after it) makes py.test --session=R hang.
I am testing with disthosts = ['ericvrp at snake']
Modified: pypy/dist/pypy/jit/codegen/llvm/llvmjit.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/llvm/llvmjit.py (original)
+++ pypy/dist/pypy/jit/codegen/llvm/llvmjit.py Fri Nov 3 13:36:33 2006
@@ -21,7 +21,7 @@
#So we always need to recompile the library if its platform (output of file libllvmjit.so)
#differs from the current (remote) platform.
#note: we can't do this in global scope because that will only be executed on the master server.
-#os.system('rm -rf libllvmjit.so build')
+os.system('rm -rf libllvmjit.so build')
#We might want to generate an up-to-date version of the library always so running (tests)
#on a clean checkout will produce correct results.
More information about the pypy-svn
mailing list