[ https://issues.apache.org/jira/browse/HARMONY-1494?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Ruth Cao updated HARMONY-1494:
------------------------------
Attachment: Harmony-1494.diff
May somebody pls try this one?
> [classlib][luni] FileDescriptor.sync() throws unexpected SyncFailedException when the
descriptor is read-only.
> --------------------------------------------------------------------------------------------------------------
>
> Key: HARMONY-1494
> URL: https://issues.apache.org/jira/browse/HARMONY-1494
> Project: Harmony
> Issue Type: Bug
> Components: Classlib
> Reporter: Andrew Zhang
> Attachments: Harmony-1494.diff
>
>
> Following test case reproduces the bug:
> public void testSyncReadOnly() throws Exception {
> String TESTFILE = "tempFile";
> try {
> FileOutputStream fos = new FileOutputStream(TESTFILE);
> fos.write("something".getBytes());
> fos.close();
> RandomAccessFile raf = new RandomAccessFile(TESTFILE, "rw");
> raf.getFD().sync();
> raf.close();
> FileInputStream fis = new FileInputStream(TESTFILE);
> fis.getFD().sync();
> fis.close();
> } finally {
> new File(TESTFILE).delete();
> }
> }
> The test passes against RI while fails against Harmony. I'll try to fix this problem.
> Best regards,
> Andrew
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
|