Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 51682 invoked from network); 5 Apr 2006 13:32:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 5 Apr 2006 13:32:12 -0000 Received: (qmail 46505 invoked by uid 500); 5 Apr 2006 13:32:06 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 46458 invoked by uid 500); 5 Apr 2006 13:32:06 -0000 Mailing-List: contact harmony-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-commits@incubator.apache.org Received: (qmail 46445 invoked by uid 99); 5 Apr 2006 13:32:05 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Apr 2006 06:32:05 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [192.87.106.226] (HELO ajax.apache.org) (192.87.106.226) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Apr 2006 06:32:05 -0700 Received: from ajax (localhost.localdomain [127.0.0.1]) by ajax.apache.org (Postfix) with ESMTP id 41C9ED49FF for ; Wed, 5 Apr 2006 14:31:44 +0100 (BST) Message-ID: <338365887.1144243904236.JavaMail.jira@ajax> Date: Wed, 5 Apr 2006 14:31:44 +0100 (BST) From: "George Harley (JIRA)" To: harmony-commits@incubator.apache.org Subject: [jira] Commented: (HARMONY-311) java.io.FileInputStream.skip(long n) returns incorrect value In-Reply-To: <407186192.1144234966386.JavaMail.jira@ajax> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/HARMONY-311?page=comments#action_12373351 ] George Harley commented on HARMONY-311: --------------------------------------- Hi Nicolay, I converted your test into a JUnit test case and found that the Harmony behaviour is consistent with both the Sun 1.4.2 and Sun 5.0 releases. Best regards, George > java.io.FileInputStream.skip(long n) returns incorrect value > ------------------------------------------------------------ > > Key: HARMONY-311 > URL: http://issues.apache.org/jira/browse/HARMONY-311 > Project: Harmony > Type: Bug > Components: Classlib > Reporter: nikolay > Assignee: George Harley > Attachments: patch.txt > > According to J2SE 1.4.2, 1.5.0 specifications for java.io.FileInputStream.skip(long n) > the method should return the actual number of bytes skipped. > The test listed below shows that the method returns incorrect value if parameter > number of bytes in file. > import java.io.FileInputStream; > import java.io.IOException; > import java.io.File; > public class Test{ > public static void main(String[] args) { > FileInputStream toRet = null; > try { > File file = new File("FileInStream.tmp"); > file.createNewFile(); > toRet = new FileInputStream(file); > System.out.println("skipped = " + toRet.skip(100)); > } catch (IOException e) { > e.printStackTrace(); > } > } > } > Output RI: > java.exe -showversion Test > java version "1.4.2_04" > Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_04-b05) > BEA WebLogic JRockit(TM) 1.4.2_04 JVM (build ari-31788-20040616-1132-win-ia32, > Native Threads, GC strategy: parallel) > skipped = 0 > Output harmony: > java -showversion Test > java version 1.4.2 (subset) > (c) Copyright 1991, 2005 The Apache Software Foundation or its licensors, as applicable. > skipped = 100 -- 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