mirror of
https://github.com/apache/impala.git
synced 2025-12-30 03:01:44 -05:00
Improperly nested quotes in tests/run-custom-cluster-tests.sh caused a
directory named "${RESULTS_DIR}" to be created in the tests directory,
which in turned interfered with run-tests.py.
Additonally noticed that run-process-failure-tests.sh was creating a
results directory within tests/. We shoud not be polluting the tests/
dir with random test artifacts, so changed the result directory path
for those tests as well.
Tested by running both scripts, and ensuring that results wound up in
logs/, and nothing was created in tests/.
Change-Id: I475f61b4ba8a693324bbefed8819d029674b66dd
Reviewed-on: http://gerrit.cloudera.org:8080/4918
Reviewed-by: Jim Apple <jbapple@cloudera.com>
Tested-by: Internal Jenkins
36 lines
1.4 KiB
Bash
Executable File
36 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for additional information
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
# to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance
|
|
# with the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing,
|
|
# software distributed under the License is distributed on an
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
# KIND, either express or implied. See the License for the
|
|
# specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
# Runs the Impala process failure tests.
|
|
|
|
set -euo pipefail
|
|
trap 'echo Error in $0 at line $LINENO: $(cd "'$PWD'" && awk "NR == $LINENO" $0)' ERR
|
|
|
|
# Disable HEAPCHECK for the process failure tests because they can cause false positives.
|
|
export HEAPCHECK=
|
|
|
|
RESULTS_DIR="${IMPALA_LOGS_DIR}/process_failure_tests"
|
|
mkdir -p "${RESULTS_DIR}"
|
|
|
|
cd "${IMPALA_HOME}/tests"
|
|
. "${IMPALA_HOME}/bin/set-classpath.sh" &> /dev/null
|
|
impala-py.test experiments/test_process_failures.py \
|
|
--junitxml="\"${RESULTS_DIR}/TEST-impala-proc-failure.xml\"" \
|
|
--resultlog="\"${RESULTS_DIR}/TEST-impala-proc-failure.log\"" "$@"
|