[pypy-svn] r72333 - pypy/build/bot2/pypybuildbot
fijal at codespeak.net
fijal at codespeak.net
Wed Mar 17 20:47:14 CET 2010
Author: fijal
Date: Wed Mar 17 20:47:12 2010
New Revision: 72333
Modified:
pypy/build/bot2/pypybuildbot/builds.py
Log:
fix paths (?)
Modified: pypy/build/bot2/pypybuildbot/builds.py
==============================================================================
--- pypy/build/bot2/pypybuildbot/builds.py (original)
+++ pypy/build/bot2/pypybuildbot/builds.py Wed Mar 17 20:47:12 2010
@@ -111,14 +111,14 @@
if pypyjit:
# upload nightly build, if we're running jit tests
nightly = 'nightly/pypy-c-jit-%(got_revision)s-' + platform
- pypy_c_rel = 'pypy/translator/goal/pypy-c'
+ pypy_c_rel = 'build/pypy/translator/goal/pypy-c'
self.addStep(transfer.FileUpload(slavesrc=pypy_c_rel,
masterdest=WithProperties(nightly),
workdir='.'))
self.addStep(ShellCmd(
description="pypyjit tests",
command=["python", "pypy/test_all.py",
- "--pypy=" + pypy_c_rel,
+ "--pypy=pypy/translator/goal/pypy-c",
"--resultlog=pypyjit.log",
"pypy/module/pypyjit/test"],
logfiles={'pytestLog': 'pypyjit.log'}))
More information about the Pypy-commit
mailing list