| #!/usr/bin/env 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. |
| |
| set -e -o pipefail |
| |
| BENCHMARK_BRANCH='develop' |
| BRANCH='develop' |
| |
| TEMP=`getopt t:b::v::B::V::m::o::h "$@"` |
| eval set -- "$TEMP" |
| |
| while true ; do |
| case "$1" in |
| -t) |
| TAG=$2 ; shift 2 ;; |
| -m) |
| BENCHMARK_BRANCH=$2 ; shift 2 ;; |
| -o) |
| OUTPUT=$2 ; shift 2 ;; |
| -b) |
| BRANCH=$2 ; shift 2 ;; |
| -v) |
| VERSION=$2 ; shift 2 ;; |
| -B) |
| BASELINE_BRANCH=$2 ; shift 2 ;; |
| -V) |
| BASELINE_VERSION=$2 ; shift 2 ;; |
| -h) |
| echo "Usage: run_test.sh -t [tag] [-v [version] | -b [branch]] [-V [baseline version] | -B [baseline branch]] <options...>" |
| echo "Options:" |
| echo "-m : Benchmark branch (optional - defaults to develop)" |
| echo "-o : Output directory (optional - defaults to ./output-<date>-<tag>" |
| echo "-v : Geode Version" |
| echo "-b : Geode Branch" |
| echo "-V : Geode Baseline Version" |
| echo "-B : Geode Baseline Branch" |
| echo "-t : Cluster tag" |
| echo "-h : This help message" |
| shift 2 |
| exit 1 ;; |
| --) shift ; break ;; |
| *) echo "Internal error!" ; exit 1 ;; |
| esac |
| done |
| |
| |
| |
| DATE=$(date '+%m-%d-%Y-%H-%M-%S') |
| |
| if [ -z "${TAG}" ]; then |
| echo "--tag argument is required." |
| exit 1 |
| fi |
| |
| OUTPUT=${OUTPUT:-output-${DATE}-${TAG}} |
| |
| set -x |
| if ! [[ "$OUTPUT" = /* ]]; then |
| OUTPUT="$(pwd)/${OUTPUT}" |
| fi |
| |
| if [ -z "${VERSION}" ]; then |
| ./run_tests.sh -t ${TAG} -b ${BRANCH} -m ${BENCHMARK_BRANCH} -o ${OUTPUT}/branch |
| else |
| ./run_tests.sh -t ${TAG} -v ${VERSION} -m ${BENCHMARK_BRANCH} -o ${OUTPUT}/branch |
| fi |
| |
| if [ -z "${BASELINE_VERSION}" ]; then |
| ./run_tests.sh -t ${TAG} -b ${BASELINE_BRANCH} -m ${BENCHMARK_BRANCH} -o ${OUTPUT}/baseline |
| else |
| ./run_tests.sh -t ${TAG} -v ${BASELINE_VERSION} -m ${BENCHMARK_BRANCH} -o ${OUTPUT}/baseline |
| fi |
| set +x |
| |
| ./analyze_tests.sh ${OUTPUT} |