Repository: spark Updated Branches: refs/heads/master 4f83e442b -> 24d07e45d
[HOTFIX] Disable flaky LauncherServerSuite.testCommunication Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/24d07e45 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/24d07e45 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/24d07e45 Branch: refs/heads/master Commit: 24d07e45d4e2e5222043b9a4447aa6c384069d4f Parents: 4f83e44 Author: Reynold Xin <[email protected]> Authored: Fri Apr 29 00:20:52 2016 -0700 Committer: Reynold Xin <[email protected]> Committed: Fri Apr 29 00:20:52 2016 -0700 ---------------------------------------------------------------------- .../test/java/org/apache/spark/launcher/LauncherServerSuite.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/24d07e45/launcher/src/test/java/org/apache/spark/launcher/LauncherServerSuite.java ---------------------------------------------------------------------- diff --git a/launcher/src/test/java/org/apache/spark/launcher/LauncherServerSuite.java b/launcher/src/test/java/org/apache/spark/launcher/LauncherServerSuite.java index bfe1fcc..22b834c 100644 --- a/launcher/src/test/java/org/apache/spark/launcher/LauncherServerSuite.java +++ b/launcher/src/test/java/org/apache/spark/launcher/LauncherServerSuite.java @@ -26,6 +26,7 @@ import java.util.concurrent.LinkedBlockingQueue; import java.util.concurrent.Semaphore; import java.util.concurrent.TimeUnit; +import org.junit.Ignore; import org.junit.Test; import static org.junit.Assert.*; @@ -61,7 +62,7 @@ public class LauncherServerSuite extends BaseSuite { } } - @Test + @Ignore public void testCommunication() throws Exception { ChildProcAppHandle handle = LauncherServer.newAppHandle(); TestClient client = null; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
