This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch bernie/benchmarking in repository toolchain/abe.
The following commit(s) were added to refs/heads/bernie/benchmarking by this push: new 84cc8c8 Make target compression-algorithm-agnostic 84cc8c8 is described below
commit 84cc8c882e0595f76eef4cfa32e96f67895b1030 Author: Bernard Ogden bernie.ogden@linaro.org Date: Mon Aug 17 12:05:10 2015 +0200
Make target compression-algorithm-agnostic
Let tar figure out what the compression algorithm is. Add xz-utils to target, so that it can decompress .xz files.
Change-Id: I3fe0d605870d2931375abfdb651de112f3e52c79 --- config/bench/lava/target-session.yaml | 1 + scripts/runbenchmark.sh | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/config/bench/lava/target-session.yaml b/config/bench/lava/target-session.yaml index 04215d8..5af9645 100644 --- a/config/bench/lava/target-session.yaml +++ b/config/bench/lava/target-session.yaml @@ -12,6 +12,7 @@ install: - openssh-server - make - cpufrequtils + - xz-utils
run: steps: diff --git a/scripts/runbenchmark.sh b/scripts/runbenchmark.sh index 3202797..4699233 100755 --- a/scripts/runbenchmark.sh +++ b/scripts/runbenchmark.sh @@ -186,8 +186,8 @@ fi }; \ trap phonehome EXIT; \ cd ${target_dir} && \ - tar xjf `basename ${buildtar}` --exclude='*.git/.git/*' && \ - cd `tar tjf ${buildtar} | head -n1` && \ + tar xf `basename ${buildtar}` --exclude='*.git/.git/*' && \ + cd `tar tf ${buildtar} | head -n1` && \ rm ../`basename ${buildtar}` && \ ../controlledrun.sh ${cautious} ${flags} -l ${tee_output} -- ./linarobench.sh [...] ret=\$?; \