diff options
author | 2013-04-23 22:16:28 -0400 | |
---|---|---|
committer | 2013-04-23 22:16:28 -0400 | |
commit | 3d52f36eb4a032fb36aa492ec86674544daa83a7 (patch) | |
tree | c6aa8e81d3d66070bd6d940d20c5c84918de1ce3 /dev-java/xmlgraphics-commons/files/disable-iccprofile-test.patch | |
parent | dev-java/flexdock version bump (diff) | |
download | sci-3d52f36eb4a032fb36aa492ec86674544daa83a7.tar.gz sci-3d52f36eb4a032fb36aa492ec86674544daa83a7.tar.bz2 sci-3d52f36eb4a032fb36aa492ec86674544daa83a7.zip |
dev-java/xmlgraphics-commons import new version from bugzilla
Diffstat (limited to 'dev-java/xmlgraphics-commons/files/disable-iccprofile-test.patch')
-rw-r--r-- | dev-java/xmlgraphics-commons/files/disable-iccprofile-test.patch | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/dev-java/xmlgraphics-commons/files/disable-iccprofile-test.patch b/dev-java/xmlgraphics-commons/files/disable-iccprofile-test.patch new file mode 100644 index 000000000..6d226e6e1 --- /dev/null +++ b/dev-java/xmlgraphics-commons/files/disable-iccprofile-test.patch @@ -0,0 +1,38 @@ +Description: This test fails with openjdk-7 (and oracle java 7). + Skip for the time being until upstream resolve - see Bug. +Author: James Page <james.page@ubuntu.com> +Bug: https://issues.apache.org/bugzilla/show_bug.cgi?id=53328 + +Index: xmlgraphics-commons/test/java/org/apache/xmlgraphics/image/loader/ImageLoaderTestCase.java +=================================================================== +--- xmlgraphics-commons.orig/test/java/org/apache/xmlgraphics/image/loader/ImageLoaderTestCase.java 2012-05-30 17:12:37.000324000 +0100 ++++ xmlgraphics-commons/test/java/org/apache/xmlgraphics/image/loader/ImageLoaderTestCase.java 2012-05-30 17:13:03.184417043 +0100 +@@ -159,28 +159,6 @@ + sessionContext.checkAllStreamsClosed(); + } + +- public void testICCProfiles() throws Exception { +- MyImageSessionContext sessionContext = createImageSessionContext(); +- List/* <ICC_Profile> */profiles = new ArrayList(); +- +- runReaders(profiles, sessionContext, "iccTest.png", "image/png", +- ImageFlavor.RAW_PNG); +- runReaders(profiles, sessionContext, "iccTest.jpg", "image/jpeg", +- ImageFlavor.RAW_JPEG); +- +- ICC_Profile first = (ICC_Profile) profiles.get(0); +- byte[] firstData = first.getData(); +- for (int i = 1; i < profiles.size(); i++) { +- ICC_Profile icc = (ICC_Profile) profiles.get(i); +- byte[] data = icc.getData(); +- assertEquals("Embedded ICC Profiles are not the same size!", +- firstData.length, data.length); +- for (int j = 0; j < firstData.length; j++) { +- assertEquals("Embedded ICC Profiles differ at index " + j, +- firstData[j], data[j]); +- } +- } +- } + + private void runReaders(List profiles, ImageSessionContext isc, String uri, + String mime, ImageFlavor rawFlavor) throws Exception { |