/hg/gfx-test: Added support for another rendering style in repor...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Sep 17 01:46:43 PDT 2010
changeset 3ae4c8d1a562 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=3ae4c8d1a562
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Sep 17 10:47:02 2010 +0200
Added support for another rendering style in reporter - entities
rendered using various scale. Also added 3D Round Rectangles to
reporter.
diffstat:
2 files changed, 20 insertions(+), 4 deletions(-)
src/org/gfxtest/framework/GfxTest.java | 4 ++--
src/org/gfxtest/reporter/Reporter.java | 20 ++++++++++++++++++--
diffs (52 lines):
diff -r 122a326e04ad -r 3ae4c8d1a562 src/org/gfxtest/framework/GfxTest.java
--- a/src/org/gfxtest/framework/GfxTest.java Thu Sep 16 18:14:11 2010 +0200
+++ b/src/org/gfxtest/framework/GfxTest.java Fri Sep 17 10:47:02 2010 +0200
@@ -138,7 +138,7 @@ public abstract class GfxTest
/**
* All dash patterns.
*/
- protected static final float[] ALL_DASH_PATTERNS = {1.0f, 2.0f, 8.0f, 16.0f};
+ protected static final float[] ALL_DASH_PATTERNS = {1.0f, /*2.0f, */8.0f, 16.0f};
/**
* Write test suite duration to the log file.
@@ -354,7 +354,7 @@ public abstract class GfxTest
private void performOneTest(GfxTestConfiguration configuration, int testNumber, EntityRenderingStyle entityRenderingStyle)
{
- String testName = "test" + testNumber; //$NON-NLS-1$
+ String testName = String.format("test%03d", testNumber); //$NON-NLS-1$
this.log.logBegin(testName);
int zoom = getZoom();
TestImage image = new TestImage(configuration, zoom);
diff -r 122a326e04ad -r 3ae4c8d1a562 src/org/gfxtest/reporter/Reporter.java
--- a/src/org/gfxtest/reporter/Reporter.java Thu Sep 16 18:14:11 2010 +0200
+++ b/src/org/gfxtest/reporter/Reporter.java Fri Sep 17 10:47:02 2010 +0200
@@ -66,9 +66,25 @@ public class Reporter
private static final String[] SPECTESTS = new String[] {"BlankImage"};
- private static final String[] ENTITIES = new String[] {"Lines", "Polylines", "Polygons", "Rectangles", "RoundRectangles", "Circles", "Ellipses", "Arcs"};
+ private static final String[] ENTITIES = new String[] {
+ "Lines",
+ "Polylines",
+ "Polygons",
+ "Rectangles",
+ "RoundRectangles",
+ "3DRectangles",
+ "Circles",
+ "Ellipses",
+ "Arcs"
+ };
- private static final String[] STYLES = new String[] {"Normal", "Filled", "Dashed", "AA"};
+ private static final String[] STYLES = new String[] {
+ "Normal",
+ "Filled",
+ "Dashed",
+ "Scaled",
+ "AA"
+ };
/**
* Write report writer duration to the log file.
More information about the distro-pkg-dev
mailing list