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.
commit 59a2d8ed1ff643c20a171f7a426ec134c864c6e4 Author: Bernard Ogden bernie.ogden@linaro.org Date: Mon Jul 13 18:24:56 2015 +0200
Remove TARGETS from parameters
This is a multinode job, we have to figure this out at runtime.
Change-Id: Id918cc7146d06470fa633c925c4c26d07f5f0f3b --- bench-session-debian.yaml | 3 +-- invoke_session_debian | 5 ++--- 2 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/bench-session-debian.yaml b/bench-session-debian.yaml index d76ee74..4dee69f 100644 --- a/bench-session-debian.yaml +++ b/bench-session-debian.yaml @@ -10,7 +10,6 @@ params: ABE_BRANCH: benchmarking BENCHMARK: fakebench TOOLCHAIN: http://releases.linaro.org/14.11/components/toolchain/binaries/arm- [...] - TARGETS: kvm RUN_FLAGS: None COMPILER_FLAGS: None
@@ -43,4 +42,4 @@ install: run: steps: - ./setup_session_debian "$PUB_KEY" - - ./invoke_session_debian "$GATEWAY" "$ABE_BRANCH" "$BENCHMARK" "$TOOLCHAI [...] + - ./invoke_session_debian "$GATEWAY" "$ABE_BRANCH" "$BENCHMARK" "$TOOLCHAI [...] diff --git a/invoke_session_debian b/invoke_session_debian index ae794b0..20bae19 100755 --- a/invoke_session_debian +++ b/invoke_session_debian @@ -14,13 +14,12 @@ abe_branch="$2" #these parameters used by Benchmark.job export benchmark="$3" export toolchain="$4" -export targets="$5" -if test x"$6" = xNone; then +if test x"$5" = xNone; then export run_flags= else export run_flags="$6" fi -if test x"$7" = xNone; then +if test x"$6" = xNone; then export compiler_flags= else export compiler_flags="$7"