You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Leo Li (JIRA)" <ji...@apache.org> on 2006/12/12 03:31:22 UTC

[jira] Updated: (HARMONY-2510) [classlib][archive]Inflater.inflate fails to throw DataFormatException while the uncompression method is not acceptable.

     [ http://issues.apache.org/jira/browse/HARMONY-2510?page=all ]

Leo Li updated HARMONY-2510:
----------------------------

    Attachment: patch-2510.diff

Will somebody try the patch?

> [classlib][archive]Inflater.inflate fails to throw DataFormatException while the uncompression method is not acceptable.
> ------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2510
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2510
>             Project: Harmony
>          Issue Type: Bug
>            Reporter: Leo Li
>         Attachments: patch-2510.diff
>
>
> Here is the testcase:
> public void test() throws Exception {
>         Inflater inflater = new Inflater();
>         inflater.setInput(new byte[] { -1 });
>         byte[] b = new byte[1024];
>         try {
>             inflater.inflate(b);
>             fail("should throw DataFormatException");
>         } catch (DataFormatException e) {
>             // expected
>         } finally {
>             inflater.end();
>         }
>     }
> RI passes.
> Harmony fails.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira