This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a change to branch bernie/benchmarking
in repository toolchain/abe.
discards a2391ec Add one of our machines to known_hosts
discards ed817cd Support makeflags in multinode jobs
discards ade0d3f Fix CLI-overriding of make_flags
discards 191ba92 Permit benchmarking with prebuilt benchmark
discards 9bd23b7 Refactor toolchain download/install code
omits 4413855 Do not disable ssh host checks
omits 76c9b33 Use sleep rather than inotify to hold target session
new b41f415 Use sleep rather than inotify to hold target session
new b97131b Do not disable ssh host checks
new 81f5812 Refactor toolchain download/install code
new 7525049 Permit benchmarking with prebuilt benchmark
new d91a05f Fix CLI-overriding of make_flags
new 4e3f51a Support makeflags in multinode jobs
new be9fc9e Add one of our machines to known_hosts
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (a2391ec)
\
N -- N -- N refs/heads/bernie/benchmarking (be9fc9e)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omits" are not gone; other references still
refer to them. Any revisions marked "discards" are gone forever.
The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
config/bench/lava/host-session | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
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.
commit a2391ec2a969069db1c5bf22aed779172a3ee233
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Fri Jul 31 17:40:38 2015 +0200
Add one of our machines to known_hosts
Change-Id: I5d026c1618f6b68821dc34089bc51b56d8747eae
---
config/bench/lava/host-session | 2 ++
1 file changed, 2 insertions(+)
diff --git a/config/bench/lava/host-session b/config/bench/lava/host-session
index ff56765..4d13088 100755
--- a/config/bench/lava/host-session
+++ b/config/bench/lava/host-session
@@ -70,6 +70,8 @@ mkdir ~/data || exit 1
#Need to be able to ssh to dev-private
echo 'dev-private.git.linaro.org ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyN [...]
+#Permit scping of toolchains/built benchmarks from this machine
+echo '148.251.136.42 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzd [...]
#Generate config file for each target in multinode job
lava-network broadcast eth0
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
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.
commit 9bd23b71e51025f610b724a979acd2ab2ec304e6
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Fri Jul 31 12:21:40 2015 +0200
Refactor toolchain download/install code
Pull out into function, add capability to use scp, stop
changing dir as part of the toolchain install process.
Change-Id: I8f1831bbe1d2336aca006d234cc0a52c2860efbc
---
scripts/Benchmark.job | 42 +++++++++++++++++++++++-------------------
1 file changed, 23 insertions(+), 19 deletions(-)
diff --git a/scripts/Benchmark.job b/scripts/Benchmark.job
index dcfa03e..35332a6 100755
--- a/scripts/Benchmark.job
+++ b/scripts/Benchmark.job
@@ -17,27 +17,39 @@ if test x"${benchmark:-}" = x; then
exit 1
fi
+function get_thing {
+ local thing="$1"
+ if echo x"${thing}" | grep -q '^xhttp'; then
+ wget -q "${thing}"
+ basename "${thing}"
+ else
+ (. host.conf && topdir="${abe_path}" && . "${topdir}"/lib/common.sh && remote_ [...]
+ basename "${prebuilt#*:}"
+ fi
+}
+
#Set up maindir
echo "Building benchmark ${benchmark} in ${maindir}"
chmod 700 "${maindir}"
cd "${maindir}"
+#Configure
+#Must have run configure before first call to get_thing
+echo "${ABE_DIR}"/configure --with-fileserver=148.251.136.42 --with-remote-snapsho [...]
+ "${ABE_DIR}"/configure --with-fileserver=148.251.136.42 --with-remote-snapsho [...]
+
#Install toolchain
mkdir bin
-cd bin
-if echo x"${toolchain}" | grep -q '^xhttp'; then
- wget -q "${toolchain}"
- tar xf "`basename ${toolchain}`"
- #TODO: abe way to handle this?
- if test x"${toolchain##.tgz}" = x.tgz; then
- benchgccpath="`echo $PWD/\`basename ${toolchain%%.tgz}\`/bin/*gcc`"
- else
- benchgccpath="`echo $PWD/\`basename ${toolchain%%.tar.*}\`/bin/*gcc`"
- fi
-else
+if test x"${toolchain:0:1}" = x/; then
echo "Toolchain assumed to be path on builder"
benchgccpath="${toolchain}"
+else
+ tarball="`get_thing ${toolchain}`"
+ tar xf "${tarball}" -C bin
+ benchgccpath="`ls ${PWD}/bin/*/bin/*gcc`"
+ rm "${tarball}"
fi
+
if test "`echo ${benchgccpath} | wc -w`" -ne 1; then
echo "Should be exactly one GCC path" 1>&2
echo "Got: ${benchgccpath}" 1>&2
@@ -50,14 +62,6 @@ if test x"${benchgccpath}" != x; then
fi
fi
-#Run benchmark
-echo cd "${maindir}"
- cd "${maindir}"
-
-#Configure
-echo "${ABE_DIR}"/configure --with-fileserver=148.251.136.42 --with-remote-snapsho [...]
- "${ABE_DIR}"/configure --with-fileserver=148.251.136.42 --with-remote-snapsho [...]
-
#Build
echo "${ABE_DIR}"/scripts/benchmark.sh -s buildonly ${compiler_flags:+-f \"${compi [...]
"${ABE_DIR}"/scripts/benchmark.sh -s buildonly ${compiler_flags:+-f "${compi [...]
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a change to branch bernie/benchmarking
in repository toolchain/abe.
discards 7cd9f93 Add one of our machines to known_hosts
omits 973259a Support makeflags in multinode jobs
omits 87537dd Fix CLI-overriding of make_flags
omits 18c67ea Permit benchmarking with prebuilt benchmark
omits 7bfea28 Refactor toolchain download/install code
new 9bd23b7 Refactor toolchain download/install code
new 191ba92 Permit benchmarking with prebuilt benchmark
new ade0d3f Fix CLI-overriding of make_flags
new ed817cd Support makeflags in multinode jobs
new a2391ec Add one of our machines to known_hosts
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (7cd9f93)
\
N -- N -- N refs/heads/bernie/benchmarking (a2391ec)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omits" are not gone; other references still
refer to them. Any revisions marked "discards" are gone forever.
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
scripts/Benchmark.job | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
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.
commit ade0d3facd3bda88e8bd4ef52804a59b38927174
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Fri Jul 31 13:32:57 2015 +0200
Fix CLI-overriding of make_flags
Looks like this was just a typo - I guess there aren't any tests?
Change-Id: I31171dcbc4909758336c37cc7f548a7927fb0b4b
---
abe.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/abe.sh b/abe.sh
index 193534f..a945bd6 100755
--- a/abe.sh
+++ b/abe.sh
@@ -497,7 +497,7 @@ set_package()
;;
makeflags|ma*)
# override_makeflags="${setting}"
- set make_flags="${make_flags} ${setting}"
+ make_flags="${make_flags} ${setting}"
notice "Overriding ${setting} to MAKEFLAGS"
return 0
;;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch trunk
in repository gcc.
from 530bb69 [ARM][2/3] Make if_neg_move and if_move_neg into insn_and_split
new 8b3c974 compiler: Don't allow builtin function values.
new ad10d66 * MAINTAINERS (nvptx): Add self.
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
ChangeLog | 4 ++++
MAINTAINERS | 1 +
gcc/go/gofrontend/MERGE | 2 +-
gcc/go/gofrontend/gogo.cc | 22 ++++++++++++++++++++++
4 files changed, 28 insertions(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 530bb69 [ARM][2/3] Make if_neg_move and if_move_neg into insn_and_split
new 8b3c974 compiler: Don't allow builtin function values.
new ad10d66 * MAINTAINERS (nvptx): Add self.
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
ChangeLog | 4 ++++
MAINTAINERS | 1 +
gcc/go/gofrontend/MERGE | 2 +-
gcc/go/gofrontend/gogo.cc | 22 ++++++++++++++++++++++
4 files changed, 28 insertions(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.