This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch inserted_src in repository toolchain/semiautobench.
The following commit(s) were added to refs/heads/inserted_src by this push: new c6edd25 Check error code of Benchmark.job c6edd25 is described below
commit c6edd25ab367c05be63e36777c2a950fe2cedf18 Author: Bernard Ogden bernie.ogden@linaro.org Date: Fri Jul 24 16:03:01 2015 +0200
Check error code of Benchmark.job
Change-Id: I6cdac421d99b6d64d1405f389d0638583ac3fe92 --- invoke_session_debian | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/invoke_session_debian b/invoke_session_debian index 5ad64ed..d176188 100755 --- a/invoke_session_debian +++ b/invoke_session_debian @@ -134,7 +134,12 @@ mkdir "${maindir}" chmod 700 "${maindir}"
echo "Running benchmark... I may be some time" -"${ABE_DIR}"/scripts/Benchmark.job +if ! "${ABE_DIR}"/scripts/Benchmark.job; then + echo "Benchmark run failed" >&2 + error=1 + exit +fi + echo "*** RESULTS READY" while ! test -e ~/data/resultsgone; do inotifywait -e create ~/data