You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@mina.apache.org by "Robin Windels (JIRA)" <ji...@apache.org> on 2008/09/10 03:09:44 UTC

[jira] Updated: (FTPSERVER-175) Build test fails under Windows XP

     [ https://issues.apache.org/jira/browse/FTPSERVER-175?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Robin Windels updated FTPSERVER-175:
------------------------------------

    Attachment: FileUserManagerConfigTest.patch

> Build test fails under Windows XP
> ---------------------------------
>
>                 Key: FTPSERVER-175
>                 URL: https://issues.apache.org/jira/browse/FTPSERVER-175
>             Project: FtpServer
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 1.0-M4
>         Environment: Windows XP, Sun JDK 1.6.0_03
>            Reporter: Robin Windels
>            Priority: Minor
>         Attachments: FileUserManagerConfigTest.patch
>
>
> excerpt from build log
>   Failed tests:
>     testFile(org.apache.ftpserver.config.spring.FileUserManagerConfigTest)
>   Tests run: 571, Failures: 1, Errors: 0, Skipped: 0
> Excerpt from Test set: org.apache.ftpserver.config.spring.FileUserManagerConfigTest
>   junit.framework.ComparisonFailure: expected:<[/tmp/]foo.users> but was:<[C:\tmp\]foo.users>
> Patch that works for me:
> Index: FileUserManagerConfigTest.java
> ===================================================================
> --- FileUserManagerConfigTest.java	(revision 693655)
> +++ FileUserManagerConfigTest.java	(working copy)
> @@ -41,7 +41,7 @@
>  
>      public void testFile() throws Throwable {
>          PropertiesUserManager um = createPropertiesUserManager("<file-user-manager file=\"/tmp/foo.users\" />");
> -        assertEquals("/tmp/foo.users", um.getFile().getAbsolutePath());
> +        assertEquals("/tmp/foo.users".replace('/', um.getFile().separatorChar), um.getFile().getPath());
>      }
>  
>      public void testMd5PasswordEncryptor() throws Throwable {

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