Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r371:4fc1bb451a1a
Date: 2017-03-08 10:50 +0100
http://bitbucket.org/pypy/benchmarks/changeset/4fc1bb451a1a/

Log:    Baaaaaaah, BM_cpython_doc runs twice with the base python and zero
        times with the changed python. This makes *all* reported results of
        cpython_doc entirely bogus.

diff --git a/benchmarks.py b/benchmarks.py
--- a/benchmarks.py
+++ b/benchmarks.py
@@ -206,7 +206,7 @@
         os.mkdir(docdir)
         htmldir = os.path.join(builddir, 'html')
         os.mkdir(htmldir)
-        args = base_python + [build, '-b', 'html', '-d', docdir, maindir, 
htmldir]
+        args = python + [build, '-b', 'html', '-d', docdir, maindir, htmldir]
         proc = subprocess.Popen(args, stderr=subprocess.PIPE, 
stdout=subprocess.PIPE)
         out, err = proc.communicate()
         retcode = proc.poll()
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to