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 fbb8d02 Rearrange ABE_DIR usage again fbb8d02 is described below
commit fbb8d02fe60e42b7b4b28728bd678844266329a9 Author: Bernard Ogden bernie.ogden@linaro.org Date: Mon Jul 13 17:25:48 2015 +0200
Rearrange ABE_DIR usage again
Turns out that Benchmark.job had inconsistent expectations.
Change-Id: I6a7d3a11204884132e6819910cea4822636d88e4 --- invoke_session_debian | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/invoke_session_debian b/invoke_session_debian index fccd0b7..ae794b0 100755 --- a/invoke_session_debian +++ b/invoke_session_debian @@ -53,15 +53,15 @@ ln /usr/share/doc/git/contrib/workdir/git-new-workdir /usr/local/bin chmod 755 /usr/local/bin/git-new-workdir
#Get abe -export ABE_DIR=~/src -mkdir "${ABE_DIR}" || exit 1 -if ! git clone ${abe_branch:+-b ${abe_branch}} http://git.linaro.org/toolchain/abe [...] +export ABE_DIR=~/src/abe +mkdir -p "${ABE_DIR}" || exit 1 +if ! git clone ${abe_branch:+-b ${abe_branch}} http://git.linaro.org/toolchain/abe [...] rm -rf "${ABE_DIR}" exit 1 fi
#Expect local sources -sed -i 's#ssh://git@dev-private.git.linaro.org#ssh://localhost/~/benchsrc/#' "$ [...] +sed -i 's#ssh://git@dev-private.git.linaro.org#ssh://localhost/~/benchsrc/#' "$ [...]
#Generate one-time key mkdir ~/data || exit 1 @@ -88,7 +88,7 @@ echo $$ > /run/hacking/hacking.pid
echo "Running benchmark... I may be some time" export LAVA_IN_LAB=1 -"${ABE_DIR}"/abe/scripts/Benchmark.job +"${ABE_DIR}"/scripts/Benchmark.job
echo "All done, waiting user" sleep infinity