Tim Allison created COMPRESS-387:
------------------------------------

             Summary: Allow spaces in path for unit tests in Windows
                 Key: COMPRESS-387
                 URL: https://issues.apache.org/jira/browse/COMPRESS-387
             Project: Commons Compress
          Issue Type: Improvement
            Reporter: Tim Allison
            Priority: Trivial


I'm getting build failures on Windows, probably because I'm working in a 
directory that has a space in the name (on purpose!).

If we modify the much better:
{noformat}
    private static final File ARCDIR = new 
File(CLASSLOADER.getResource("archives").getFile());
{noformat}
with this hideousness in LongPathTest, LongSymLinkTest and ArchiveReadTest
{noformat}
    static {
        try {
            ARCDIR = new 
File(CLASSLOADER.getResource("archives").toURI().getPath());
        } catch (URISyntaxException e) {
            throw new RuntimeException(e);
        }
    }
{noformat}
tests all pass.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to