diff options
author | Stefan Stanacar <stefanx.stanacar@intel.com> | 2013-09-12 11:09:00 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-14 08:22:43 +0100 |
commit | 8c2b5948d41d753982242cd86a1498ab4f1bb317 (patch) | |
tree | 86c9d14c906acc0aed577b430d455b3bcd7200b0 | |
parent | 9e963fe587dda3ce77707194fc5dd029188c76d8 (diff) | |
download | openembedded-core-8c2b5948d41d753982242cd86a1498ab4f1bb317.tar.gz openembedded-core-8c2b5948d41d753982242cd86a1498ab4f1bb317.tar.bz2 openembedded-core-8c2b5948d41d753982242cd86a1498ab4f1bb317.zip |
scripts/contrib/build-perf-test.sh: record size in kb and remove extra spaces
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>
-rwxr-xr-x | scripts/contrib/build-perf-test.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/contrib/build-perf-test.sh b/scripts/contrib/build-perf-test.sh index ce0fb9afd8..be3b648046 100755 --- a/scripts/contrib/build-perf-test.sh +++ b/scripts/contrib/build-perf-test.sh @@ -170,6 +170,7 @@ fi # Disabling the network sanity check helps a bit (because of my crappy network connection and/or proxy) echo "CONNECTIVITY_CHECK_URIS =\"\"" >> conf/local.conf + # # Functions # @@ -284,7 +285,7 @@ test1_p1 () { do_rmsstate do_sync bbtime $IMAGE - s=`du -sh tmp | sed 's/tmp//'` + s=`du -s tmp | sed 's/tmp//' | sed 's/[ \t]*$//'` SIZES[(( size_count++ ))]="$s" log "SIZE of tmp dir is: $s" log "Buildstats are saved in $OUTDIR/buildstats-test1" @@ -307,7 +308,7 @@ test1_p3 () { do_sync bbtime $IMAGE sed -i 's/INHERIT += \"rm_work\"//' conf/local.conf - s=`du -sh tmp | sed 's/tmp//'` + s=`du -s tmp | sed 's/tmp//' | sed 's/[ \t]*$//'` SIZES[(( size_count++ ))]="$s" log "SIZE of tmp dir is: $s" log "Buildstats are saved in $OUTDIR/buildstats-test13" |