This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch bernie/benchmarking in repository toolchain/abe.
The following commit(s) were added to refs/heads/bernie/benchmarking by this push: new 40d479a wip: debugging printfs 40d479a is described below
commit 40d479a89e6bfd476d8bbe398a74d3bd69055eeb Author: Bernard Ogden bernie.ogden@linaro.org Date: Tue Aug 11 08:46:48 2015 +0200
wip: debugging printfs
Change-Id: Ib5e5a3fb8f87315144eb1767a4b1661b459c087e --- scripts/Benchmark.job | 12 ++++++++++++ 1 file changed, 12 insertions(+)
diff --git a/scripts/Benchmark.job b/scripts/Benchmark.job index 9f78fd0..299f37e 100755 --- a/scripts/Benchmark.job +++ b/scripts/Benchmark.job @@ -24,6 +24,11 @@ function get_thing { basename "${thing}" else (. host.conf && topdir="${abe_path}" && . "${topdir}"/lib/common.sh && remote_ [...] +echo "prebuilt: '${prebuilt}'" > /dev/console +echo "prebuilt1: '${prebuilt%%:*}'" > /dev/console +echo "prebuilt2: '${prebuilt#*:}'" > /dev/console +echo -n "basename: " + basename "${prebuilt#*:}" > /dev/console basename "${prebuilt#*:}" fi } @@ -44,9 +49,16 @@ if test x"${toolchain:0:1}" = x/; then echo "Toolchain assumed to be path on builder" benchgccpath="${toolchain}" else +pwd > /dev/console +ls > /dev/console tarball="`get_thing ${toolchain}`" +echo "TARBALL: ${tarball}" > /dev/console tar xf "${tarball}" -C bin +pwd > /dev/console +ls > /dev/console +echo "TARBALL: ${tarball}" > /dev/console benchgccpath="`ls ${PWD}/bin/*/bin/*gcc`" +echo "PATH: ${benchgccpath}" > /dev/console rm "${tarball}" fi