Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Borowitz2017-07-07 18:43:57 +0000
committerDavid Pursehouse2018-06-19 11:52:23 +0000
commit8223a7e6463fa530602e6c967343c2536ce9aae6 (patch)
tree7c21d8cf96df2f65a6dd52174a7e08bcfeb94f0c
parentd13918310f54cd395dab0d1d0cb83c68b3900cd9 (diff)
downloadjgit-8223a7e6463fa530602e6c967343c2536ce9aae6.tar.gz
jgit-8223a7e6463fa530602e6c967343c2536ce9aae6.tar.xz
jgit-8223a7e6463fa530602e6c967343c2536ce9aae6.zip
Temporarily @Ignore flaky CommitCommandTest methods
Change-Id: Ia2c42d014323bd29b85bf76f1a20c83f612406d7 Signed-off-by: David Pursehouse <david.pursehouse@gmail.com> (cherry picked from commit e93b0026ced10c956e76daed038f2560a33b5baf)
-rw-r--r--org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CommitCommandTest.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CommitCommandTest.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CommitCommandTest.java
index 8a07118f84..ba84081023 100644
--- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CommitCommandTest.java
+++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CommitCommandTest.java
@@ -76,6 +76,7 @@ import org.eclipse.jgit.submodule.SubmoduleWalk;
import org.eclipse.jgit.treewalk.TreeWalk;
import org.eclipse.jgit.treewalk.filter.TreeFilter;
import org.eclipse.jgit.util.FS;
+import org.junit.Ignore;
import org.junit.Test;
/**
@@ -291,6 +292,7 @@ public class CommitCommandTest extends RepositoryTestCase {
}
}
+ @Ignore("very flaky when run with Hudson")
@Test
public void commitUpdatesSmudgedEntries() throws Exception {
try (Git git = new Git(db)) {
@@ -347,6 +349,7 @@ public class CommitCommandTest extends RepositoryTestCase {
}
}
+ @Ignore("very flaky when run with Hudson")
@Test
public void commitIgnoresSmudgedEntryWithDifferentId() throws Exception {
try (Git git = new Git(db)) {

Back to the top