Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Rosenberg2012-08-21 16:17:31 +0000
committerRobin Rosenberg2012-08-21 17:43:47 +0000
commitf72b26f2d3776c72889a481f975c1add49980697 (patch)
tree4f5b0754de6d90783bec9123a0d1a8a505179e38
parentef6aec3a04c8403037779e8122fa4c89af7d3d0b (diff)
downloadjgit-f72b26f2d3776c72889a481f975c1add49980697.tar.gz
jgit-f72b26f2d3776c72889a481f975c1add49980697.tar.xz
jgit-f72b26f2d3776c72889a481f975c1add49980697.zip
Skip a test that cannot be verified on Windows
-rw-r--r--org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CommitAndLogCommandTests.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CommitAndLogCommandTests.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CommitAndLogCommandTests.java
index ed32e27b0a..6424f1c5d3 100644
--- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CommitAndLogCommandTests.java
+++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CommitAndLogCommandTests.java
@@ -256,6 +256,8 @@ public class CommitAndLogCommandTests extends RepositoryTestCase {
@Test
public void testModeChange() throws IOException, GitAPIException {
+ if (System.getProperty("os.name").startsWith("Windows"))
+ return; // SKIP
Git git = new Git(db);
// create file

Back to the top