scripts/contrib/build-perf-test.sh: use the same identation everywhere

Some functions didn't used the same identation as the rest of them,
let's fix that.

(From OE-Core rev: a7af4541060f62b4019a100d57e0d082794f708b)

Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Stefan Stanacar 2013-04-25 15:10:59 +03:00 committed by Richard Purdie
parent eff37ecde9
commit 04d552f6df
1 changed files with 36 additions and 36 deletions

View File

@ -257,36 +257,36 @@ do_sync () {
# - report size, remove INHERIT
test1_p1 () {
log "Running Test 1, part 1/3: Measure wall clock of bitbake $IMAGE and size of tmp/ dir"
bbnotime "$IMAGE -c fetchall"
do_rmtmp
do_rmsstate
do_sync
bbtime "$IMAGE"
log "SIZE of tmp dir is: `du -sh tmp | sed 's/tmp//'`"
log "Buildstats are saved in $OUTDIR/buildstats-test1"
mv tmp/buildstats $OUTDIR/buildstats-test1
log "Running Test 1, part 1/3: Measure wall clock of bitbake $IMAGE and size of tmp/ dir"
bbnotime "$IMAGE -c fetchall"
do_rmtmp
do_rmsstate
do_sync
bbtime "$IMAGE"
log "SIZE of tmp dir is: `du -sh tmp | sed 's/tmp//'`"
log "Buildstats are saved in $OUTDIR/buildstats-test1"
mv tmp/buildstats $OUTDIR/buildstats-test1
}
test1_p2 () {
log "Running Test 1, part 2/3: bitbake virtual/kernel -c cleansstate and time bitbake virtual/kernel"
bbnotime "virtual/kernel -c cleansstate"
do_sync
bbtime "virtual/kernel"
log "Running Test 1, part 2/3: bitbake virtual/kernel -c cleansstate and time bitbake virtual/kernel"
bbnotime "virtual/kernel -c cleansstate"
do_sync
bbtime "virtual/kernel"
}
test1_p3 () {
log "Running Test 1, part 3/3: Build $IMAGE w/o sstate and report size of tmp/dir with rm_work enabled"
echo "INHERIT += \"rm_work\"" >> conf/local.conf
do_rmtmp
do_rmsstate
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//'`"
log "Buildstats are saved in $OUTDIR/buildstats-test13"
mv tmp/buildstats $OUTDIR/buildstats-test13
log "Running Test 1, part 3/3: Build $IMAGE w/o sstate and report size of tmp/dir with rm_work enabled"
echo "INHERIT += \"rm_work\"" >> conf/local.conf
do_rmtmp
do_rmsstate
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//'`"
log "Buildstats are saved in $OUTDIR/buildstats-test13"
mv tmp/buildstats $OUTDIR/buildstats-test13
}
@ -296,11 +296,11 @@ mv tmp/buildstats $OUTDIR/buildstats-test13
# Pre: populated sstate cache
test2 () {
#assuming test 1 has run
log "Running Test 2: Measure wall clock of bitbake $IMAGE -c rootfs with sstate"
do_rmtmp
do_sync
bbtime "$IMAGE -c rootfs"
# Assuming test 1 has run
log "Running Test 2: Measure wall clock of bitbake $IMAGE -c rootfs with sstate"
do_rmtmp
do_sync
bbtime "$IMAGE -c rootfs"
}
@ -314,14 +314,14 @@ bbtime "$IMAGE -c rootfs"
test3 () {
log "Running Test 3: Parsing time metrics (bitbake -p)"
log " Removing tmp/cache && cache"
rm -rf tmp/cache cache
bbtime "-p"
log " Removing tmp/cache/default-eglibc/"
rm -rf tmp/cache/default-eglibc/
bbtime "-p"
bbtime "-p"
log "Running Test 3: Parsing time metrics (bitbake -p)"
log " Removing tmp/cache && cache"
rm -rf tmp/cache cache
bbtime "-p"
log " Removing tmp/cache/default-eglibc/"
rm -rf tmp/cache/default-eglibc/
bbtime "-p"
bbtime "-p"
}