aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorXiangrui Meng <meng@databricks.com>2014-10-28 22:00:10 -0700
committerXiangrui Meng <meng@databricks.com>2014-10-28 22:00:10 -0700
commit1559495dd961d299299a27aae2cb940e8c6697c5 (patch)
treee8e899139f3130198437a025d2648f02e892003c /core
parent8c0bfd08fc19fa5de7d77bf8306d19834f907ec0 (diff)
downloadspark-1559495dd961d299299a27aae2cb940e8c6697c5.tar.gz
spark-1559495dd961d299299a27aae2cb940e8c6697c5.tar.bz2
spark-1559495dd961d299299a27aae2cb940e8c6697c5.zip
[FIX] disable benchmark code
I forgot to disable the benchmark code in #2937, which increased the Jenkins build time by couple minutes. aarondav Author: Xiangrui Meng <meng@databricks.com> Closes #2990 from mengxr/disable-benchmark and squashes the following commits: c58f070 [Xiangrui Meng] disable benchmark code
Diffstat (limited to 'core')
-rw-r--r--core/src/test/scala/org/apache/spark/util/collection/SorterSuite.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/test/scala/org/apache/spark/util/collection/SorterSuite.scala b/core/src/test/scala/org/apache/spark/util/collection/SorterSuite.scala
index 066d47c46a..0cb1ed7397 100644
--- a/core/src/test/scala/org/apache/spark/util/collection/SorterSuite.scala
+++ b/core/src/test/scala/org/apache/spark/util/collection/SorterSuite.scala
@@ -157,7 +157,7 @@ class SorterSuite extends FunSuite {
* here is mainly to have the code. Running multiple tests within the same JVM session would
* prevent JIT inlining overridden methods and hence hurt the performance.
*/
- test("Sorter benchmark for primitive int array") {
+ ignore("Sorter benchmark for primitive int array") {
val numElements = 25000000 // 25 mil
val rand = new XORShiftRandom(123)