You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Tim Allison (JIRA)" <ji...@apache.org> on 2017/04/14 17:29:41 UTC

[jira] [Created] (COMPRESS-387) Allow spaces in path for unit tests in Windows

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)