You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Nathan Beyer (JIRA)" <ji...@apache.org> on 2007/04/20 03:47:15 UTC

[jira] Created: (HARMONY-3708) [classlib][swing] javax.swing.JFileChooserTest fails due to invalid user folder lookup on Windows 2000

[classlib][swing] javax.swing.JFileChooserTest fails due to invalid user folder lookup on Windows 2000
------------------------------------------------------------------------------------------------------

                 Key: HARMONY-3708
                 URL: https://issues.apache.org/jira/browse/HARMONY-3708
             Project: Harmony
          Issue Type: Bug
          Components: Classlib
         Environment: Windows 2000, Pentium III, IBM VM
            Reporter: Nathan Beyer


javax.swing.JFileChooserTest has a number of failures that seems related to looking up the current user's folder.



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HARMONY-3708) [classlib][swing] javax.swing.JFileChooserTest fails due to invalid user folder lookup on Windows 2000

Posted by "Nathan Beyer (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-3708?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Nathan Beyer updated HARMONY-3708:
----------------------------------

    Attachment: TEST-javax.swing.JFileChooserTest.xml

Attachment TEST-javax.swing.JFileChooserTest.xml

Contains the test failures.

> [classlib][swing] javax.swing.JFileChooserTest fails due to invalid user folder lookup on Windows 2000
> ------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-3708
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3708
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>         Environment: Windows 2000, Pentium III, IBM VM
>            Reporter: Nathan Beyer
>         Attachments: TEST-javax.swing.JFileChooserTest.xml
>
>
> javax.swing.JFileChooserTest has a number of failures that seems related to looking up the current user's folder.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HARMONY-3708) [classlib][swing] javax.swing.JFileChooserTest fails due to invalid user folder lookup on Windows 2000

Posted by "Alexey Petrenko (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HARMONY-3708?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12494720 ] 

Alexey Petrenko commented on HARMONY-3708:
------------------------------------------

The cause of the issue is in WinFileManager class. It uses CSIDL_PERSONAL constant to retrieve default directory for FileSystemView class. But this constant is not present on W2K.

> [classlib][swing] javax.swing.JFileChooserTest fails due to invalid user folder lookup on Windows 2000
> ------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-3708
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3708
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>         Environment: Windows 2000, Pentium III, IBM VM
>            Reporter: Nathan Beyer
>         Assigned To: Alexey Petrenko
>         Attachments: TEST-javax.swing.JFileChooserTest.xml
>
>
> javax.swing.JFileChooserTest has a number of failures that seems related to looking up the current user's folder.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (HARMONY-3708) [classlib][swing] javax.swing.JFileChooserTest fails due to invalid user folder lookup on Windows 2000

Posted by "Alexey Petrenko (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-3708?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexey Petrenko reassigned HARMONY-3708:
----------------------------------------

    Assignee: Alexey Petrenko

> [classlib][swing] javax.swing.JFileChooserTest fails due to invalid user folder lookup on Windows 2000
> ------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-3708
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3708
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>         Environment: Windows 2000, Pentium III, IBM VM
>            Reporter: Nathan Beyer
>         Assigned To: Alexey Petrenko
>         Attachments: TEST-javax.swing.JFileChooserTest.xml
>
>
> javax.swing.JFileChooserTest has a number of failures that seems related to looking up the current user's folder.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HARMONY-3708) [classlib][swing] javax.swing.JFileChooserTest fails due to invalid user folder lookup on Windows 2000

Posted by "Alexey A. Ivanov (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HARMONY-3708?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12495029 ] 

Alexey A. Ivanov commented on HARMONY-3708:
-------------------------------------------

CSIDL_MYDOCUMENTS can be used instead of CSIDL_PERSONAL to refer to the same file system location. For reference, see http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/reference/enums/csidl.asp

> [classlib][swing] javax.swing.JFileChooserTest fails due to invalid user folder lookup on Windows 2000
> ------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-3708
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3708
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>         Environment: Windows 2000, Pentium III, IBM VM
>            Reporter: Nathan Beyer
>         Assigned To: Alexey Petrenko
>         Attachments: TEST-javax.swing.JFileChooserTest.xml
>
>
> javax.swing.JFileChooserTest has a number of failures that seems related to looking up the current user's folder.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HARMONY-3708) [classlib][swing] javax.swing.JFileChooserTest fails due to invalid user folder lookup on Windows 2000

Posted by "Alexey Petrenko (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HARMONY-3708?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12495030 ] 

Alexey Petrenko commented on HARMONY-3708:
------------------------------------------

Yes, but unfortunately CSIDL_MYDOCUMENTS has the same OS version requirements as CSIDL_PERSONAL.

> [classlib][swing] javax.swing.JFileChooserTest fails due to invalid user folder lookup on Windows 2000
> ------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-3708
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3708
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>         Environment: Windows 2000, Pentium III, IBM VM
>            Reporter: Nathan Beyer
>         Assigned To: Alexey Petrenko
>         Attachments: TEST-javax.swing.JFileChooserTest.xml
>
>
> javax.swing.JFileChooserTest has a number of failures that seems related to looking up the current user's folder.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.