HADOOP-11949. Add user-provided plugins to test-patch (Sean Busbey via aw)
This commit is contained in:
parent
bcc17866dd
commit
060c84ea86
|
@ -40,6 +40,9 @@ function setup_defaults
|
||||||
BASEDIR=$(pwd)
|
BASEDIR=$(pwd)
|
||||||
RELOCATE_PATCH_DIR=false
|
RELOCATE_PATCH_DIR=false
|
||||||
|
|
||||||
|
USER_PLUGIN_DIR=""
|
||||||
|
LOAD_SYSTEM_PLUGINS=true
|
||||||
|
|
||||||
FINDBUGS_HOME=${FINDBUGS_HOME:-}
|
FINDBUGS_HOME=${FINDBUGS_HOME:-}
|
||||||
ECLIPSE_HOME=${ECLIPSE_HOME:-}
|
ECLIPSE_HOME=${ECLIPSE_HOME:-}
|
||||||
BUILD_NATIVE=${BUILD_NATIVE:-true}
|
BUILD_NATIVE=${BUILD_NATIVE:-true}
|
||||||
|
@ -586,9 +589,11 @@ function hadoop_usage
|
||||||
echo "--modulelist=<list> Specify additional modules to test (comma delimited)"
|
echo "--modulelist=<list> Specify additional modules to test (comma delimited)"
|
||||||
echo "--offline Avoid connecting to the Internet"
|
echo "--offline Avoid connecting to the Internet"
|
||||||
echo "--patch-dir=<dir> The directory for working and output files (default '/tmp/${PROJECT_NAME}-test-patch/pid')"
|
echo "--patch-dir=<dir> The directory for working and output files (default '/tmp/${PROJECT_NAME}-test-patch/pid')"
|
||||||
|
echo "--plugins=<dir> A directory of user provided plugins. see test-patch.d for examples (default empty)"
|
||||||
echo "--project=<name> The short name for project currently using test-patch (default 'hadoop')"
|
echo "--project=<name> The short name for project currently using test-patch (default 'hadoop')"
|
||||||
echo "--resetrepo Forcibly clean the repo"
|
echo "--resetrepo Forcibly clean the repo"
|
||||||
echo "--run-tests Run all relevant tests below the base directory"
|
echo "--run-tests Run all relevant tests below the base directory"
|
||||||
|
echo "--skip-system-plugins Do not load plugins from ${BINDIR}/test-patch.d"
|
||||||
echo "--testlist=<list> Specify which subsystem tests to use (comma delimited)"
|
echo "--testlist=<list> Specify which subsystem tests to use (comma delimited)"
|
||||||
|
|
||||||
echo "Shell binary overrides:"
|
echo "Shell binary overrides:"
|
||||||
|
@ -706,6 +711,9 @@ function parse_args
|
||||||
--patch-dir=*)
|
--patch-dir=*)
|
||||||
USER_PATCH_DIR=${i#*=}
|
USER_PATCH_DIR=${i#*=}
|
||||||
;;
|
;;
|
||||||
|
--plugins=*)
|
||||||
|
USER_PLUGIN_DIR=${i#*=}
|
||||||
|
;;
|
||||||
--project=*)
|
--project=*)
|
||||||
PROJECT_NAME=${i#*=}
|
PROJECT_NAME=${i#*=}
|
||||||
;;
|
;;
|
||||||
|
@ -723,6 +731,9 @@ function parse_args
|
||||||
--run-tests)
|
--run-tests)
|
||||||
RUN_TESTS=true
|
RUN_TESTS=true
|
||||||
;;
|
;;
|
||||||
|
--skip-system-plugins)
|
||||||
|
LOAD_SYSTEM_PLUGINS=false
|
||||||
|
;;
|
||||||
--testlist=*)
|
--testlist=*)
|
||||||
testlist=${i#*=}
|
testlist=${i#*=}
|
||||||
testlist=${testlist//,/ }
|
testlist=${testlist//,/ }
|
||||||
|
@ -2523,17 +2534,25 @@ function runtests
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
## @description Import content from test-patch.d
|
## @description Import content from test-patch.d and optionally
|
||||||
|
## @description from user provided plugin directory
|
||||||
## @audience private
|
## @audience private
|
||||||
## @stability evolving
|
## @stability evolving
|
||||||
## @replaceable no
|
## @replaceable no
|
||||||
function importplugins
|
function importplugins
|
||||||
{
|
{
|
||||||
local i
|
local i
|
||||||
local files
|
local files=()
|
||||||
|
|
||||||
if [[ -d "${BINDIR}/test-patch.d" ]]; then
|
if [[ ${LOAD_SYSTEM_PLUGINS} == "true" ]]; then
|
||||||
files=(${BINDIR}/test-patch.d/*.sh)
|
if [[ -d "${BINDIR}/test-patch.d" ]]; then
|
||||||
|
files=(${BINDIR}/test-patch.d/*.sh)
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -n "${USER_PLUGIN_DIR}" && -d "${USER_PLUGIN_DIR}" ]]; then
|
||||||
|
hadoop_debug "Loading user provided plugins from ${USER_PLUGIN_DIR}"
|
||||||
|
files=("${files[@]}" ${USER_PLUGIN_DIR}/*.sh)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for i in "${files[@]}"; do
|
for i in "${files[@]}"; do
|
||||||
|
|
|
@ -486,6 +486,8 @@ Release 2.8.0 - UNRELEASED
|
||||||
HADOOP-11843. Make setting up the build environment easier.
|
HADOOP-11843. Make setting up the build environment easier.
|
||||||
(Niels Basjes via cnauroth)
|
(Niels Basjes via cnauroth)
|
||||||
|
|
||||||
|
HADOOP-11949. Add user-provided plugins to test-patch (Sean Busbey via aw)
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
|
|
||||||
HADOOP-6842. "hadoop fs -text" does not give a useful text representation
|
HADOOP-6842. "hadoop fs -text" does not give a useful text representation
|
||||||
|
|
Loading…
Reference in New Issue