Changeset 9793 in josm for trunk/test/performance/org
- Timestamp:
- 2016-02-13T20:49:22+01:00 (9 years ago)
- Location:
- trunk/test/performance/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/performance/org/openstreetmap/josm/PerformanceTestUtils.java
r9789 r9793 2 2 package org.openstreetmap.josm; 3 3 4 import org.openstreetmap.josm.io.XmlWriter; 5 4 6 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; 5 6 import org.openstreetmap.josm.io.XmlWriter;7 7 8 8 /** … … 63 63 /** 64 64 * Emit one data value for the Jenkins Measurement Plots Plugin. 65 * 65 * 66 66 * The plugin collects the values over multiple builds and plots them in a diagram. 67 * 68 * @see https://wiki.jenkins-ci.org/display/JENKINS/Measurement+Plots+Plugin 67 * 69 68 * @param name the name / title of the measurement 70 69 * @param value the value 70 * @see https://wiki.jenkins-ci.org/display/JENKINS/Measurement+Plots+Plugin 71 71 */ 72 72 public static void measurementPlotsPluginOutput(String name, double value) { -
trunk/test/performance/org/openstreetmap/josm/gui/mappaint/MapRendererPerformanceTest.java
r9788 r9793 68 68 } 69 69 } 70 70 71 private static final EnumMap<Feature, BooleanStyleSetting> filters = new EnumMap<>(Feature.class); 71 72 … … 112 113 113 114 MapCSSStyleSource defaultStyle = null; 114 for (int i = 0; i < sources.size(); i++) {115 for (int i = 0; i < sources.size(); i++) { 115 116 StyleSource s = sources.get(i); 116 117 if ("resource://styles/standard/elemstyles.mapcss".equals(s.url)) { … … 199 200 try { 200 201 Thread.sleep(300); 201 } catch (InterruptedException ex) {} 202 } catch (InterruptedException ex) { 203 Main.warn(ex); 204 } 202 205 StyledMapRenderer.BenchmarkData data = new StyledMapRenderer.BenchmarkData(); 203 206 data.skipDraw = skipDraw;
Note:
See TracChangeset
for help on using the changeset viewer.