summaryrefslogtreecommitdiffstats
path: root/scripts/contrib
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2016-08-19 16:18:55 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-08-25 23:03:48 +0100
commit96e68f15f04b9607a75eae4e1ef9bd70a2714eb4 (patch)
tree3e590772bbfd59a64a1aa280eea2bf56d94731b7 /scripts/contrib
parentee4c5f61718ea61f1d80a1c4ca9cdafb3b28e90c (diff)
downloadpoky-96e68f15f04b9607a75eae4e1ef9bd70a2714eb4.tar.gz
build-perf-test-wrapper.sh: make workdir configurable
New command line argument '-w' may be used to specify work dir other than the default <GIT_DIR>/build-perf-test. (From OE-Core rev: 824284895f25146520a624b7b97f7475d0135814) Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/contrib')
-rwxr-xr-xscripts/contrib/build-perf-test-wrapper.sh12
1 files changed, 9 insertions, 3 deletions
diff --git a/scripts/contrib/build-perf-test-wrapper.sh b/scripts/contrib/build-perf-test-wrapper.sh
index ef2a46e3d8..efc2b79d6c 100755
--- a/scripts/contrib/build-perf-test-wrapper.sh
+++ b/scripts/contrib/build-perf-test-wrapper.sh
@@ -29,6 +29,7 @@ Optional arguments:
29 disable tarball archiving 29 disable tarball archiving
30 -c COMMITISH test (checkout) this commit 30 -c COMMITISH test (checkout) this commit
31 -C GIT_REPO commit results into Git 31 -C GIT_REPO commit results into Git
32 -w WORK_DIR work dir for this script
32EOF 33EOF
33} 34}
34 35
@@ -37,7 +38,7 @@ EOF
37archive_dir=~/perf-results/archives 38archive_dir=~/perf-results/archives
38commitish="" 39commitish=""
39results_repo="" 40results_repo=""
40while getopts "ha:c:C:" opt; do 41while getopts "ha:c:C:w:" opt; do
41 case $opt in 42 case $opt in
42 h) usage 43 h) usage
43 exit 0 44 exit 0
@@ -48,13 +49,14 @@ while getopts "ha:c:C:" opt; do
48 ;; 49 ;;
49 C) results_repo=`realpath "$OPTARG"` 50 C) results_repo=`realpath "$OPTARG"`
50 ;; 51 ;;
52 w) base_dir=`realpath "$OPTARG"`
53 ;;
51 *) usage 54 *) usage
52 exit 1 55 exit 1
53 ;; 56 ;;
54 esac 57 esac
55done 58done
56 59
57
58echo "Running on `uname -n`" 60echo "Running on `uname -n`"
59if ! git_topdir=$(git rev-parse --show-toplevel); then 61if ! git_topdir=$(git rev-parse --show-toplevel); then
60 echo "The current working dir doesn't seem to be a git clone. Please cd there before running `basename $0`" 62 echo "The current working dir doesn't seem to be a git clone. Please cd there before running `basename $0`"
@@ -76,9 +78,13 @@ if [ -n "$commitish" ]; then
76fi 78fi
77 79
78# Setup build environment 80# Setup build environment
81if [ -z "$base_dir" ]; then
82 base_dir="$git_topdir/build-perf-test"
83fi
84echo "Using working dir $base_dir"
85
79timestamp=`date "+%Y%m%d%H%M%S"` 86timestamp=`date "+%Y%m%d%H%M%S"`
80git_rev=$(git rev-parse --short HEAD) || exit 1 87git_rev=$(git rev-parse --short HEAD) || exit 1
81base_dir="$git_topdir/build-perf-test"
82build_dir="$base_dir/build-$git_rev-$timestamp" 88build_dir="$base_dir/build-$git_rev-$timestamp"
83results_dir="$base_dir/results-$git_rev-$timestamp" 89results_dir="$base_dir/results-$git_rev-$timestamp"
84globalres_log="$base_dir/globalres.log" 90globalres_log="$base_dir/globalres.log"