Replace '.' with ',' in the test paths to keep the original intent, but make the test runnable on systems where files named "a." cannot be reliably created. The problem seems to be that a file created as "a." will end up as "a" on disk. Signed-off-by: Jonas Fonseca <fonseca@xxxxxxx> --- .../jgit/treewalk/FileTreeIteratorTest.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) With this all the tests pass on my Windows installation. diff --git a/org.spearce.jgit.test/tst/org/spearce/jgit/treewalk/FileTreeIteratorTest.java b/org.spearce.jgit.test/tst/org/spearce/jgit/treewalk/FileTreeIteratorTest.java index ca31991..967557e 100644 --- a/org.spearce.jgit.test/tst/org/spearce/jgit/treewalk/FileTreeIteratorTest.java +++ b/org.spearce.jgit.test/tst/org/spearce/jgit/treewalk/FileTreeIteratorTest.java @@ -47,7 +47,7 @@ import org.spearce.jgit.util.RawParseUtils; public class FileTreeIteratorTest extends RepositoryTestCase { - private final String[] paths = { "a.", "a.b", "a/b", "a0b" }; + private final String[] paths = { "a,", "a,b", "a/b", "a0b" }; private long[] mtime; -- 1.6.0.2.1166.g8d97a.dirty -- Jonas Fonseca -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html