Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.egit.core.test/src/org/eclipse/egit/core/test/SubmoduleAndContainerTreeIteratorTest.java')
-rw-r--r--org.eclipse.egit.core.test/src/org/eclipse/egit/core/test/SubmoduleAndContainerTreeIteratorTest.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/org.eclipse.egit.core.test/src/org/eclipse/egit/core/test/SubmoduleAndContainerTreeIteratorTest.java b/org.eclipse.egit.core.test/src/org/eclipse/egit/core/test/SubmoduleAndContainerTreeIteratorTest.java
index fc49bb5e6b..8a2c6c7551 100644
--- a/org.eclipse.egit.core.test/src/org/eclipse/egit/core/test/SubmoduleAndContainerTreeIteratorTest.java
+++ b/org.eclipse.egit.core.test/src/org/eclipse/egit/core/test/SubmoduleAndContainerTreeIteratorTest.java
@@ -26,6 +26,7 @@ import org.eclipse.jgit.junit.RepositoryTestCase;
import org.eclipse.jgit.lib.Constants;
import org.junit.After;
import org.junit.Before;
+import org.junit.Ignore;
import org.junit.Test;
public class SubmoduleAndContainerTreeIteratorTest {
@@ -93,8 +94,10 @@ public class SubmoduleAndContainerTreeIteratorTest {
testUtils.deleteTempDirs();
}
+ @Ignore("See last comments on https://git.eclipse.org/r/50372/")
@Test
- public void testCleanStateAfterInit() throws NoWorkTreeException,
+ public void testCleanStateAfterInit()
+ throws NoWorkTreeException,
GitAPIException {
Git parentGit = Git.wrap(parentRepository.getRepository());
@@ -102,6 +105,7 @@ public class SubmoduleAndContainerTreeIteratorTest {
assertTrue(status.isClean());
}
+ @Ignore("See last comments on https://git.eclipse.org/r/50372/")
@Test
public void testCleanStateFirstCommit() throws NoWorkTreeException,
GitAPIException, IOException, CoreException, InterruptedException {

Back to the top