This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch bernie/jenkmarking-multinode in repository toolchain/abe.
commit 8022cda231ac6b049876a56742cdcde15447f069 Author: Bernard Ogden bernie.ogden@linaro.org Date: Thu Jul 23 08:40:55 2015 +0200
Do not delete results on exit
This script used to send results to a fileserver. This responsibility lies elsewhere in the system (at least for now) so stop it from deleting the results.
Also lets us get rid of some mild complexity that had been required to support results-removal-via-exit-trap.
Change-Id: I1a45dba71393fcb6c42ae678a07d21d131974eb5 --- scripts/Benchmark.job | 9 --------- 1 file changed, 9 deletions(-)
diff --git a/scripts/Benchmark.job b/scripts/Benchmark.job index e8bd00d..b03ac99 100755 --- a/scripts/Benchmark.job +++ b/scripts/Benchmark.job @@ -7,9 +7,6 @@ set -o pipefail benchgccpath= targets=(${targets}) maindir="`mktemp --tmpdir=${HOME} -d bench-XXX`" -error=1 - -trap "rm -rf ${maindir}; exit ${error}" EXIT
#A little parameter checking if test x"${toolchain:-}" = x; then @@ -58,10 +55,4 @@ fi cd "${maindir}" "${ABE_DIR}"/configure --with-fileserver=148.251.136.42 --with-remote-snapshots=/s [...]
-set +e "${ABE_DIR}"/scripts/benchmark.sh ${run_flags:+-a "${run_flags//"/\"}"} ${compi [...] -tmperr=$? -set -e -if test ${tmperr} -eq 0; then - error=0 -fi