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 11a27cae06cbf9adc7416ce3966ef8990ac6a118 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 | 9 ++++----- 2 files changed, 5 insertions(+), 7 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..4b08f01 100755 --- a/invoke_session_debian +++ b/invoke_session_debian @@ -14,16 +14,15 @@ 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" + export run_flags="$5" fi -if test x"$7" = xNone; then +if test x"$6" = xNone; then export compiler_flags= else - export compiler_flags="$7" + export compiler_flags="$6" fi echo "Target's Gateway: $gateway"