You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by pw...@apache.org on 2014/03/02 23:27:26 UTC

git commit: Ignore RateLimitedOutputStreamSuite for now.

Repository: spark
Updated Branches:
  refs/heads/master 46bcb9551 -> 353ac6b4f


Ignore RateLimitedOutputStreamSuite for now.

This test has been flaky. We can re-enable it after @tdas has a chance to look at it.

Author: Reynold Xin <rx...@apache.org>

Closes #54 from rxin/ratelimit and squashes the following commits:

1a12198 [Reynold Xin] Ignore RateLimitedOutputStreamSuite for now.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/353ac6b4
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/353ac6b4
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/353ac6b4

Branch: refs/heads/master
Commit: 353ac6b4fa8f0740a7faabc1309022420c7b52fc
Parents: 46bcb95
Author: Reynold Xin <rx...@apache.org>
Authored: Sun Mar 2 14:27:19 2014 -0800
Committer: Patrick Wendell <pw...@gmail.com>
Committed: Sun Mar 2 14:27:19 2014 -0800

----------------------------------------------------------------------
 .../apache/spark/streaming/util/RateLimitedOutputStreamSuite.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/353ac6b4/streaming/src/test/scala/org/apache/spark/streaming/util/RateLimitedOutputStreamSuite.scala
----------------------------------------------------------------------
diff --git a/streaming/src/test/scala/org/apache/spark/streaming/util/RateLimitedOutputStreamSuite.scala b/streaming/src/test/scala/org/apache/spark/streaming/util/RateLimitedOutputStreamSuite.scala
index 15f13d5..e5bf6d7 100644
--- a/streaming/src/test/scala/org/apache/spark/streaming/util/RateLimitedOutputStreamSuite.scala
+++ b/streaming/src/test/scala/org/apache/spark/streaming/util/RateLimitedOutputStreamSuite.scala
@@ -29,7 +29,7 @@ class RateLimitedOutputStreamSuite extends FunSuite {
     System.nanoTime - start
   }
 
-  test("write") {
+  ignore("write") {
     val underlying = new ByteArrayOutputStream
     val data = "X" * 41000
     val stream = new RateLimitedOutputStream(underlying, 10000)