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.
commit a3435afd59aab1f24858532c9b5854e305dced94 Author: Bernard Ogden bernie.ogden@linaro.org Date: Thu Jul 30 18:43:59 2015 +0200
Split Benchmark.job into build and run phases, accept arbitrary command to run [...]
Change-Id: I775861d2f6e71294fb3300dde5a64b23ef4066fa --- scripts/Benchmark.job | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/scripts/Benchmark.job b/scripts/Benchmark.job index 8e320f1..dcfa03e 100755 --- a/scripts/Benchmark.job +++ b/scripts/Benchmark.job @@ -53,13 +53,23 @@ fi #Run benchmark echo cd "${maindir}" cd "${maindir}" + +#Configure echo "${ABE_DIR}"/configure --with-fileserver=148.251.136.42 --with-remote-snapsho [...] "${ABE_DIR}"/configure --with-fileserver=148.251.136.42 --with-remote-snapsho [...]
+#Build +echo "${ABE_DIR}"/scripts/benchmark.sh -s buildonly ${compiler_flags:+-f "${compi [...] + "${ABE_DIR}"/scripts/benchmark.sh -s buildonly ${compiler_flags:+-f "${compi [...] + +#Post-build command +${post_build_cmd:-} + +#Run if test x"${BENCH_DEBUG:-}" = x; then politeness='-p' else politeness= fi -echo "${ABE_DIR}"/scripts/benchmark.sh ${politeness:-} ${post_target_cmd:+-e "${p [...] - "${ABE_DIR}"/scripts/benchmark.sh ${politeness:-} ${post_target_cmd:+-e "${p [...] +echo "${ABE_DIR}"/scripts/benchmark.sh -s runonly ${politeness:-} ${post_target_cm [...] + "${ABE_DIR}"/scripts/benchmark.sh -s runonly ${politeness:-} ${post_target_cm [...]