aboutsummaryrefslogtreecommitdiff
path: root/dev/run-tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'dev/run-tests.py')
-rwxr-xr-xdev/run-tests.py28
1 files changed, 26 insertions, 2 deletions
diff --git a/dev/run-tests.py b/dev/run-tests.py
index 4fd703a7c2..d8b22e1665 100755
--- a/dev/run-tests.py
+++ b/dev/run-tests.py
@@ -21,6 +21,7 @@ from __future__ import print_function
import itertools
from optparse import OptionParser
import os
+import random
import re
import sys
import subprocess
@@ -239,11 +240,32 @@ def build_spark_documentation():
os.chdir(SPARK_HOME)
+def get_zinc_port():
+ """
+ Get a randomized port on which to start Zinc
+ """
+ return random.randrange(3030, 4030)
+
+
+def kill_zinc_on_port(zinc_port):
+ """
+ Kill the Zinc process running on the given port, if one exists.
+ """
+ cmd = ("/usr/sbin/lsof -P |grep %s | grep LISTEN "
+ "| awk '{ print $2; }' | xargs kill") % zinc_port
+ subprocess.check_call(cmd, shell=True)
+
+
def exec_maven(mvn_args=()):
"""Will call Maven in the current directory with the list of mvn_args passed
in and returns the subprocess for any further processing"""
- run_cmd([os.path.join(SPARK_HOME, "build", "mvn")] + mvn_args)
+ zinc_port = get_zinc_port()
+ os.environ["ZINC_PORT"] = "%s" % zinc_port
+ zinc_flag = "-DzincPort=%s" % zinc_port
+ flags = [os.path.join(SPARK_HOME, "build", "mvn"), "--force", zinc_flag]
+ run_cmd(flags + mvn_args)
+ kill_zinc_on_port(zinc_port)
def exec_sbt(sbt_args=()):
@@ -514,7 +536,9 @@ def main():
build_apache_spark(build_tool, hadoop_version)
# backwards compatibility checks
- detect_binary_inop_with_mima()
+ if build_tool == "sbt":
+ # Note: compatiblity tests only supported in sbt for now
+ detect_binary_inop_with_mima()
# run the test suites
run_scala_tests(build_tool, hadoop_version, test_modules)