aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2013-08-19 18:35:47 -0700
committerMatei Zaharia <matei@eecs.berkeley.edu>2013-08-19 18:51:00 -0700
commit793a722f8e14552b8d36f46cca39d336dc2df9dd (patch)
tree9d23aa924697854ff84d3b1fe03361819e727a53 /core
parent498a26189b197bdaf4be47e6a8baca7b97fe9064 (diff)
downloadspark-793a722f8e14552b8d36f46cca39d336dc2df9dd.tar.gz
spark-793a722f8e14552b8d36f46cca39d336dc2df9dd.tar.bz2
spark-793a722f8e14552b8d36f46cca39d336dc2df9dd.zip
Allow some wiggle room in UISuite port test and in EC2 ports
Diffstat (limited to 'core')
-rw-r--r--core/src/test/scala/spark/ui/UISuite.scala5
1 files changed, 3 insertions, 2 deletions
diff --git a/core/src/test/scala/spark/ui/UISuite.scala b/core/src/test/scala/spark/ui/UISuite.scala
index 41cb0e0a35..735a794396 100644
--- a/core/src/test/scala/spark/ui/UISuite.scala
+++ b/core/src/test/scala/spark/ui/UISuite.scala
@@ -30,8 +30,9 @@ class UISuite extends FunSuite {
val (jettyServer1, boundPort1) = JettyUtils.startJettyServer("localhost", startPort, Seq())
val (jettyServer2, boundPort2) = JettyUtils.startJettyServer("localhost", startPort, Seq())
- assert(boundPort1 === startPort + 1)
- assert(boundPort2 === startPort + 2)
+ // Allow some wiggle room in case ports on the machine are under contention
+ assert(boundPort1 > startPort && boundPort1 < startPort + 10)
+ assert(boundPort2 > boundPort1 && boundPort2 < boundPort1 + 10)
}
test("jetty binds to port 0 correctly") {