This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from f4e3ba8 Update libgomp/testsuite/*/examples-4/* according to latest v [...]
new 90f2e4f 2015-07-13 John Marino <gnugcc(a)marino.st>
new 6c8a324 2015-07-13 John Marino <gnugcc(a)marino.st>
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:
libgcc/ChangeLog | 4 ++++
libgcc/config/i386/t-dragonfly | 2 ++
libstdc++-v3/ChangeLog | 6 ++++++
libstdc++-v3/config/os/bsd/dragonfly/os_defines.h | 5 +++++
4 files changed, 17 insertions(+)
create mode 100644 libgcc/config/i386/t-dragonfly
--
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 inserted_src
in repository toolchain/semiautobench.
from 9961711 Handle parameters from YAML that might be 'None'
new 72b5ca4 Rearrange ABE_DIR to be as Benchmark.job expects
new 018b079 Enquote ABE_DIR
new b3d62bb Indirect through ABE_DIR everywhere that we can
The 3 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:
invoke_session_debian | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
--
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 inserted_src
in repository toolchain/semiautobench.
The following commit(s) were added to refs/heads/inserted_src by this push:
new 9961711 Handle parameters from YAML that might be 'None'
9961711 is described below
commit 996171177787ed2f9b466dca66124c9e6c022ede
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Mon Jul 13 16:46:30 2015 +0200
Handle parameters from YAML that might be 'None'
Change-Id: Ief346fd13f1b6da143f6efb7461590a27276986b
---
invoke_session_debian | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/invoke_session_debian b/invoke_session_debian
index 9c6986f..b225c77 100755
--- a/invoke_session_debian
+++ b/invoke_session_debian
@@ -15,8 +15,16 @@ abe_branch="$2"
export benchmark="$3"
export toolchain="$4"
export targets="$5"
-export run_flags="$6"
-export compiler_flags="$7"
+if test x"$6" = xNone; then
+ export run_flags=
+else
+ export run_flags="$6"
+fi
+if test x"$7" = xNone; then
+ export compiler_flags=
+else
+ export compiler_flags="$7"
+fi
echo "Target's Gateway: $gateway"
env
--
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 inserted_src
in repository toolchain/semiautobench.
The following commit(s) were added to refs/heads/inserted_src by this push:
new 7532fd6 export ABE_DIR
7532fd6 is described below
commit 7532fd673e653fe3f1d157474b724251abdc2f2d
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Mon Jul 13 16:45:21 2015 +0200
export ABE_DIR
Used by Benchmark.job
Change-Id: Iff2bbfbe72d1d030a25ea5ceb9283eafa7945271
---
invoke_session_debian | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/invoke_session_debian b/invoke_session_debian
index efc081f..9c6986f 100755
--- a/invoke_session_debian
+++ b/invoke_session_debian
@@ -46,7 +46,7 @@ chmod 755 /usr/local/bin/git-new-workdir
#Get abe
mkdir ~/src || exit 1
-ABE_DIR=~/src/abe
+export ABE_DIR=~/src/abe
if ! git clone ${abe_branch:+-b ${abe_branch}} http://git.linaro.org/toolchain/abe [...]
rm -rf ~/src
exit 1
--
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 inserted_src
in repository toolchain/semiautobench.
commit d626d2f0b12e8a28374eaca7a72ea408568cf3ac
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Mon Jul 13 16:07:22 2015 +0200
Make value of empty YAML parameter explicit
These appear to be set to 'None', even when blank.
Change-Id: I1abfc0b3c1ebc1ca22c6d2b4af861bc847e42a0d
---
bench-session-debian.yaml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/bench-session-debian.yaml b/bench-session-debian.yaml
index 56d114f..d76ee74 100644
--- a/bench-session-debian.yaml
+++ b/bench-session-debian.yaml
@@ -11,8 +11,8 @@ params:
BENCHMARK: fakebench
TOOLCHAIN: http://releases.linaro.org/14.11/components/toolchain/binaries/arm- [...]
TARGETS: kvm
- RUN_FLAGS:
- COMPILER_FLAGS:
+ RUN_FLAGS: None
+ COMPILER_FLAGS: None
install:
sources:
--
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 inserted_src
in repository toolchain/semiautobench.
commit 0d5dbe12283d839b5c0048ae69fa104860cca269
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Mon Jul 13 15:30:51 2015 +0200
Check out with -b if abe_branch given
Previous version was buggy, in that it always assumed a branch.
Default value now handled in YAML.
Change-Id: I3c701b68c62c274948f304400be74d1ab8d34707
---
invoke_session_debian | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/invoke_session_debian b/invoke_session_debian
index f1181b1..09cd3dd 100755
--- a/invoke_session_debian
+++ b/invoke_session_debian
@@ -47,7 +47,7 @@ chmod 755 /usr/local/bin/git-new-workdir
#Get abe
mkdir ~/src || exit 1
ABE_DIR=~/src/abe
-if ! git clone -b ${abe_branch:-benchmarking} http://git.linaro.org/toolchain/abe [...]
+if ! git clone ${abe_branch:+-b ${abe_branch}} http://git.linaro.org/toolchain/abe [...]
rm -rf ~/src
exit 1
fi
--
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 inserted_src
in repository toolchain/semiautobench.
discards 3ec438a Make value of empty YAML parameter explicit
discards 735f332 Move env so I can see the effect of leaving things unspecified
discards 579dfba Check out with -b if abe_branch given
discards eb96dd9 Remove ABE_DIR variable
new 0d5dbe1 Check out with -b if abe_branch given
new 9ebefb4 Move env so I can see the effect of leaving things unspecified
new d626d2f Make value of empty YAML parameter explicit
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 (3ec438a)
\
N -- N -- N refs/heads/inserted_src (d626d2f)
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 3 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:
invoke_session_debian | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.