You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ne...@apache.org on 2012/10/29 13:58:57 UTC

svn commit: r1403277 - /subversion/trunk/tools/dev/benchmarks/suite1/benchmark.py

Author: neels
Date: Mon Oct 29 12:58:57 2012
New Revision: 1403277

URL: http://svn.apache.org/viewvc?rev=1403277&view=rev
Log:
benchmark suite1: tiny tweak so charts work on svn-qavm, our ASF VM. For some
weird reason, choosing edgecolor="none" hides all chart bars, and only so on
svn-qavm. On my laptop at home edgecolor="none" works fine.

* tools/dev/benchmarks/suite1/benchmark.py
  (cmdline_chart_compare): Use edgecolor="white" so bars are not hidden.

Modified:
    subversion/trunk/tools/dev/benchmarks/suite1/benchmark.py

Modified: subversion/trunk/tools/dev/benchmarks/suite1/benchmark.py
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dev/benchmarks/suite1/benchmark.py?rev=1403277&r1=1403276&r2=1403277&view=diff
==============================================================================
--- subversion/trunk/tools/dev/benchmarks/suite1/benchmark.py (original)
+++ subversion/trunk/tools/dev/benchmarks/suite1/benchmark.py Mon Oct 29 12:58:57 2012
@@ -1060,7 +1060,7 @@ def cmdline_chart_compare(db, options, *
       deviations.append(this_max / this_min)
 
     rects = plot1.bar(ind + ofs, divs, width * (1.0 - dist),
-                      color=divs_color, bottom=100.0, edgecolor='none')
+                      color=divs_color, bottom=100.0, edgecolor='white')
 
     for i in range(len(rects)):
       x = rects[i].get_x() + width / 2.2
@@ -1073,7 +1073,7 @@ def cmdline_chart_compare(db, options, *
                  rotation=-90, family='monospace')
 
     rects = plot2.bar(ind + ofs, diffs, width * 0.9,
-                   color=divs_color, bottom=0.0, edgecolor='none')
+                   color=divs_color, bottom=0.0, edgecolor='white')
 
     for i in range(len(rects)):
       x = rects[i].get_x() + width / 2.2