Author: fijal
Branch: single-run
Changeset: r349:898cedf9e20c
Date: 2016-02-25 10:23 +0100
http://bitbucket.org/pypy/benchmarks/changeset/898cedf9e20c/

Log:    fix

diff --git a/bench-data.json b/bench-data.json
--- a/bench-data.json
+++ b/bench-data.json
@@ -31,7 +31,9 @@
    "warmup": 40
  },
  "bm_mdp": {
-   "description": "Some AI ..."
+   "description": "Some AI that uses a lot of fractions",
+   "total_runs": 2,
+   "warmup": 1
  },
  "pypy_interp": {
    "description": "interpreting py.py",
diff --git a/benchmarks.py b/benchmarks.py
--- a/benchmarks.py
+++ b/benchmarks.py
@@ -202,7 +202,7 @@
         print err
         raise Exception("sphinx-build.py failed")
     res = float(out.splitlines()[-1])
-    return RawResult([res])
+    return RawResult([res], None)
 
 BM_cpython_doc.benchmark_name = 'sphinx'
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to