Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Loskutov2015-11-29 19:07:59 +0000
committerAndrey Loskutov2015-11-29 19:07:59 +0000
commiteef72a4b552fddd51951394fd63e9cee53117cb4 (patch)
tree43cc78daa38e4d04dca069ccaaa21bd2f48ed44c /org.eclipse.egit.core.test/src
parenta59b3735891ea4e302e97d49cedb4df4768e42c0 (diff)
downloadegit-eef72a4b552fddd51951394fd63e9cee53117cb4.tar.gz
egit-eef72a4b552fddd51951394fd63e9cee53117cb4.tar.xz
egit-eef72a4b552fddd51951394fd63e9cee53117cb4.zip
Temporarily disabled failing submodule tests
See last comments on https://git.eclipse.org/r/50372/ and https://git.eclipse.org/r/61525/. Change-Id: Id27198c72acf003ec82295546cce803a4affee9a Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
Diffstat (limited to 'org.eclipse.egit.core.test/src')
-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