diff options
author | Stefan Stanacar <stefanx.stanacar@intel.com> | 2013-06-12 18:07:19 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-13 17:37:57 +0100 |
commit | 769a2c8ce797ee3afa39ab0fe9d9206a60cc4ba1 (patch) | |
tree | 90619d4480613f975f33217208102f4d3b72ea11 /scripts | |
parent | a6a12ef5cad0dbb2d773bdccc340f1f767c5a782 (diff) | |
download | openembedded-core-769a2c8ce797ee3afa39ab0fe9d9206a60cc4ba1.tar.gz openembedded-core-769a2c8ce797ee3afa39ab0fe9d9206a60cc4ba1.tar.bz2 openembedded-core-769a2c8ce797ee3afa39ab0fe9d9206a60cc4ba1.zip |
scripts/contrib/build-perf-test.sh: add branch name and sizes to results
Be more descriptive about the revision we are running on
in the global results file: add branch:commit and git describe fields.
Also add the sizes for tmp dir not only times. (previously these were
only available in the output.log)
Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/contrib/build-perf-test.sh | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/scripts/contrib/build-perf-test.sh b/scripts/contrib/build-perf-test.sh index 0af2cfea0e..8d243f0f30 100755 --- a/scripts/contrib/build-perf-test.sh +++ b/scripts/contrib/build-perf-test.sh @@ -112,9 +112,9 @@ if [ $reqpass -ne 0 ]; then fi if [ -n "$commit" ]; then - echo "git checkout $commit" + echo "git checkout -f $commit" git pull > /dev/null 2>&1 - git checkout $commit || exit 1 + git checkout -f $commit || exit 1 git pull > /dev/null 2>&1 fi @@ -144,8 +144,9 @@ log () { # Config stuff # -rev=$(git rev-parse HEAD) || exit 1 -log "Git revision is $rev" +branch=`git branch 2>&1 | grep "^* " | tr -d "* "` +gitcommit=$(git rev-parse HEAD) || exit 1 +log "Running on $branch:$gitcommit" source ./oe-init-build-env $OUTDIR/build >/dev/null || exit 1 cd $OUTDIR/build @@ -175,6 +176,8 @@ echo "CONNECTIVITY_CHECK_URIS =\"\"" >> conf/local.conf declare -a TIMES time_count=0 +declare -a SIZES +size_count=0 bbtime () { log " Timing: bitbake $1" @@ -240,10 +243,13 @@ do_sync () { } write_results() { - echo -n "`uname -n`,$rev," >> $globalres + echo -n "`uname -n`,$branch:$gitcommit,`git describe`," >> $globalres for i in "${TIMES[@]}"; do echo -n "$i," >> $globalres done + for i in "${SIZES[@]}"; do + echo -n "$i," >> $globalres + done echo >> $globalres sed -i '$ s/,$//' $globalres } @@ -276,7 +282,9 @@ test1_p1 () { do_rmsstate do_sync bbtime "$IMAGE" - log "SIZE of tmp dir is: `du -sh tmp | sed 's/tmp//'`" + s=`du -sh tmp | sed 's/tmp//'` + SIZES[(( size_count++ ))]="$s" + log "SIZE of tmp dir is: $s" log "Buildstats are saved in $OUTDIR/buildstats-test1" mv tmp/buildstats $OUTDIR/buildstats-test1 } @@ -297,7 +305,9 @@ test1_p3 () { do_sync bbtime "$IMAGE" sed -i 's/INHERIT += \"rm_work\"//' conf/local.conf - log "SIZE of tmp dir is: `du -sh tmp | sed 's/tmp//'`" + s=`du -sh tmp | sed 's/tmp//'` + SIZES[(( size_count++ ))]="$s" + log "SIZE of tmp dir is: $s" log "Buildstats are saved in $OUTDIR/buildstats-test13" mv tmp/buildstats $OUTDIR/buildstats-test13 } |