/hg/gfx-test: New annotation added to test suites - Transformation.

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Fri Jul 16 08:43:56 PDT 2010


changeset 43d70c352682 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=43d70c352682
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Jul 16 17:44:09 2010 +0200

	New annotation added to test suites - Transformation.


diffstat:

9 files changed, 100 insertions(+)
src/org/gfxtest/framework/annotations/Transformation.java  |   46 +++++++++++
src/org/gfxtest/framework/annotations/Transformations.java |   47 ++++++++++++
src/org/gfxtest/testsuites/BlankImage.java                 |    1 
src/org/gfxtest/testsuites/DashedLines.java                |    1 
src/org/gfxtest/testsuites/DashedPolylines.java            |    1 
src/org/gfxtest/testsuites/DashedRectangles.java           |    1 
src/org/gfxtest/testsuites/ScaledLines.java                |    1 
src/org/gfxtest/testsuites/ScaledPolylines.java            |    1 
src/org/gfxtest/testsuites/ScaledRectangles.java           |    1 

diffs (178 lines):

diff -r 1835f1b2615b -r 43d70c352682 src/org/gfxtest/framework/annotations/Transformation.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/org/gfxtest/framework/annotations/Transformation.java	Fri Jul 16 17:44:09 2010 +0200
@@ -0,0 +1,46 @@
+/*
+  Java gfx-test framework
+
+   Copyright (C) 2010  Red Hat
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+IcedTea is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING.  If not, write to the
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library.  Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module.  An independent module is a module which is not derived from
+or based on this library.  If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so.  If you do not wish to do so, delete this
+exception statement from your version.
+*/
+
+package org.gfxtest.framework.annotations;
+
+public @interface Transformation
+{
+    Transformations value();
+}
diff -r 1835f1b2615b -r 43d70c352682 src/org/gfxtest/framework/annotations/Transformations.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/org/gfxtest/framework/annotations/Transformations.java	Fri Jul 16 17:44:09 2010 +0200
@@ -0,0 +1,47 @@
+/*
+  Java gfx-test framework
+
+   Copyright (C) 2010  Red Hat
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+IcedTea is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING.  If not, write to the
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library.  Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module.  An independent module is a module which is not derived from
+or based on this library.  If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so.  If you do not wish to do so, delete this
+exception statement from your version.
+*/
+
+package org.gfxtest.framework.annotations;
+
+public enum Transformations
+{
+    NONE,
+    SCALE,
+}
diff -r 1835f1b2615b -r 43d70c352682 src/org/gfxtest/testsuites/BlankImage.java
--- a/src/org/gfxtest/testsuites/BlankImage.java	Fri Jul 16 16:29:45 2010 +0200
+++ b/src/org/gfxtest/testsuites/BlankImage.java	Fri Jul 16 17:44:09 2010 +0200
@@ -53,6 +53,7 @@ import org.gfxtest.framework.annotations
 @TestType(TestTypes.RENDER_TEST)
 @GraphicsPrimitive(GraphicsPrimitives.COMMON_BITMAP)
 @RenderStyle(RenderStyles.NONE)
+ at Transformation(Transformations.NONE)
 public class BlankImage extends GfxTest
 {
 
diff -r 1835f1b2615b -r 43d70c352682 src/org/gfxtest/testsuites/DashedLines.java
--- a/src/org/gfxtest/testsuites/DashedLines.java	Fri Jul 16 16:29:45 2010 +0200
+++ b/src/org/gfxtest/testsuites/DashedLines.java	Fri Jul 16 17:44:09 2010 +0200
@@ -55,6 +55,7 @@ import org.gfxtest.framework.annotations
 @TestType(TestTypes.RENDER_TEST)
 @GraphicsPrimitive(GraphicsPrimitives.LINE)
 @RenderStyle(RenderStyles.DASH)
+ at Transformation(Transformations.NONE)
 public class DashedLines extends GfxTest
 {
     private static final float DEFAULT_SCALE = 20.0f;
diff -r 1835f1b2615b -r 43d70c352682 src/org/gfxtest/testsuites/DashedPolylines.java
--- a/src/org/gfxtest/testsuites/DashedPolylines.java	Fri Jul 16 16:29:45 2010 +0200
+++ b/src/org/gfxtest/testsuites/DashedPolylines.java	Fri Jul 16 17:44:09 2010 +0200
@@ -55,6 +55,7 @@ import org.gfxtest.framework.annotations
 @TestType(TestTypes.RENDER_TEST)
 @GraphicsPrimitive(GraphicsPrimitives.POLYLINE)
 @RenderStyle(RenderStyles.DASH)
+ at Transformation(Transformations.NONE)
 public class DashedPolylines extends GfxTest
 {
     private static final int OFFSET = 80;
diff -r 1835f1b2615b -r 43d70c352682 src/org/gfxtest/testsuites/DashedRectangles.java
--- a/src/org/gfxtest/testsuites/DashedRectangles.java	Fri Jul 16 16:29:45 2010 +0200
+++ b/src/org/gfxtest/testsuites/DashedRectangles.java	Fri Jul 16 17:44:09 2010 +0200
@@ -55,6 +55,7 @@ import org.gfxtest.framework.annotations
 @TestType(TestTypes.RENDER_TEST)
 @GraphicsPrimitive(GraphicsPrimitives.RECTANGLE)
 @RenderStyle(RenderStyles.DASH)
+ at Transformation(Transformations.NONE)
 public class DashedRectangles extends GfxTest
 {
     private static final float DEFAULT_SCALE = 20.0f;
diff -r 1835f1b2615b -r 43d70c352682 src/org/gfxtest/testsuites/ScaledLines.java
--- a/src/org/gfxtest/testsuites/ScaledLines.java	Fri Jul 16 16:29:45 2010 +0200
+++ b/src/org/gfxtest/testsuites/ScaledLines.java	Fri Jul 16 17:44:09 2010 +0200
@@ -55,6 +55,7 @@ import org.gfxtest.framework.annotations
 @TestType(TestTypes.RENDER_TEST)
 @GraphicsPrimitive(GraphicsPrimitives.LINE)
 @RenderStyle(RenderStyles.NORMAL)
+ at Transformation(Transformations.SCALE)
 public class ScaledLines extends GfxTest
 {
     private static final int OFFSET = 80;
diff -r 1835f1b2615b -r 43d70c352682 src/org/gfxtest/testsuites/ScaledPolylines.java
--- a/src/org/gfxtest/testsuites/ScaledPolylines.java	Fri Jul 16 16:29:45 2010 +0200
+++ b/src/org/gfxtest/testsuites/ScaledPolylines.java	Fri Jul 16 17:44:09 2010 +0200
@@ -55,6 +55,7 @@ import org.gfxtest.framework.annotations
 @TestType(TestTypes.RENDER_TEST)
 @GraphicsPrimitive(GraphicsPrimitives.POLYLINE)
 @RenderStyle(RenderStyles.NORMAL)
+ at Transformation(Transformations.SCALE)
 public class ScaledPolylines extends GfxTest
 {
     private static final int OFFSET = 80;
diff -r 1835f1b2615b -r 43d70c352682 src/org/gfxtest/testsuites/ScaledRectangles.java
--- a/src/org/gfxtest/testsuites/ScaledRectangles.java	Fri Jul 16 16:29:45 2010 +0200
+++ b/src/org/gfxtest/testsuites/ScaledRectangles.java	Fri Jul 16 17:44:09 2010 +0200
@@ -55,6 +55,7 @@ import org.gfxtest.framework.annotations
 @TestType(TestTypes.RENDER_TEST)
 @GraphicsPrimitive(GraphicsPrimitives.RECTANGLE)
 @RenderStyle(RenderStyles.NORMAL)
+ at Transformation(Transformations.SCALE)
 public class ScaledRectangles extends GfxTest
 {
     private static final int OFFSET = 80;



More information about the distro-pkg-dev mailing list