mirror of https://github.com/apache/lucene.git
SOLR-10912: fix routing of Solr non-contrib build output dirs (e.g. solr/core -> ../build/solr-core; previously -> ../build/core)
This commit is contained in:
parent
fac84c01c8
commit
51a6bec48d
|
@ -198,12 +198,14 @@ function testoutput_process_tests
|
|||
declare buildlogfile=$2
|
||||
if [[ "${module}" =~ ^lucene/analysis/ ]]; then
|
||||
JUNIT_TEST_OUTPUT_DIR="../../build/${module#*/}"
|
||||
elif [[ "${module}" =~ ^lucene/ ]]; then
|
||||
JUNIT_TEST_OUTPUT_DIR="../build/${module#*/}"
|
||||
elif [[ "${module}" =~ ^solr/contrib/extraction ]]; then
|
||||
JUNIT_TEST_OUTPUT_DIR="../../build/contrib/solr-cell"
|
||||
elif [[ "${module}" =~ ^solr/contrib/(.*) ]]; then
|
||||
JUNIT_TEST_OUTPUT_DIR="../../build/contrib/solr-${BASH_REMATCH[1]}"
|
||||
elif [[ "${module}" =~ ^(lucene|solr)/ ]]; then
|
||||
JUNIT_TEST_OUTPUT_DIR="../build/${module#*/}"
|
||||
elif [[ "${module}" =~ ^solr/(.*) ]]; then
|
||||
JUNIT_TEST_OUTPUT_DIR="../build/solr-${BASH_REMATCH[1]}"
|
||||
fi
|
||||
yetus_debug "Rerouting build dir for junit to ${JUNIT_TEST_OUTPUT_DIR}"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue