[pypy-commit] extradoc extradoc: pick a newer pypy revision that contains all required debug information to run the benchmarks on and collect all jit-* debug messages

bivab noreply at buildbot.pypy.org
Fri Jul 27 15:52:53 CEST 2012


Author: David Schneider <david.schneider at picle.org>
Branch: extradoc
Changeset: r4387:4091285a9836
Date: 2012-07-27 15:38 +0200
http://bitbucket.org/pypy/extradoc/changeset/4091285a9836/

Log:	pick a newer pypy revision that contains all required debug
	information to run the benchmarks on and collect all jit-* debug
	messages

diff --git a/talk/vmil2012/tool/run_benchmarks.sh b/talk/vmil2012/tool/run_benchmarks.sh
--- a/talk/vmil2012/tool/run_benchmarks.sh
+++ b/talk/vmil2012/tool/run_benchmarks.sh
@@ -5,11 +5,11 @@
 benchmarks="${base}/pypy-benchmarks"
 REV="ff7b35837d0f"
 pypy_co="${base}/pypy"
-PYPYREV='release-1.9'
+PYPYREV='0b77afaafdd0'
 pypy="${pypy_co}/pypy-c"
 pypy_opts=",--jit enable_opts=intbounds:rewrite:virtualize:string:pure:heap:ffi"
 baseline=$(which true)
-logopts='jit-backend-dump,jit-backend-guard-size,jit-log-opt,jit-log-noopt,jit-summary'
+logopts='jit'
 # checkout and build a pypy-c version
 if [ ! -d "${pypy_co}" ]; then
   echo "Cloning pypy repository to ${pypy_co}"
@@ -18,6 +18,8 @@
 #
 cd "${pypy_co}"
 echo "updating pypy to fixed revision ${PYPYREV}"
+hg revert --all
+hg pull -u
 hg update "${PYPYREV}"
 echo "Patching pypy"
 patch -p1 -N < "$base/tool/ll_resume_data_count.patch"
@@ -30,7 +32,6 @@
     echo "found!"
 fi
 
-
 # setup a checkout of the pypy benchmarks and update to a fixed revision
 if [ ! -d "${benchmarks}" ]; then
   echo "Cloning pypy/benchmarks repository to ${benchmarks}"


More information about the pypy-commit mailing list