Repository: qpid-proton Updated Branches: refs/heads/master 9c165c7d2 -> 998d89da4
PROTON-1472: use submodule rather than clone in .travis.yml Following travis recommendations. Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/998d89da Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/998d89da Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/998d89da Branch: refs/heads/master Commit: 998d89da43a1f01edc34cd7136fa023493d3ea05 Parents: 9c165c7 Author: Alan Conway <[email protected]> Authored: Wed May 3 17:23:36 2017 -0400 Committer: Alan Conway <[email protected]> Committed: Wed May 3 18:37:10 2017 -0400 ---------------------------------------------------------------------- .travis.yml | 5 +++-- proton-c/src/tests/valgrind.supp | 6 ++---- 2 files changed, 5 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/998d89da/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index 9c88fe9..ffa09a6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -50,7 +50,8 @@ install: # Build and install libuv 1.0 from source, trusty only has 0.10 - PREFIX=$PWD/install -- git clone -b v1.x https://github.com/libuv/libuv +- git submodule add -b v1.x https://github.com/libuv/libuv +- git submodule update --init - pushd libuv - sh autogen.sh - ./configure --prefix $PREFIX @@ -63,6 +64,6 @@ before_script: - mkdir Build - cd Build - cmake .. -DCMAKE_INSTALL_PREFIX=$PREFIX + script: -- export VALGRIND_OPTS="--num-callers=32" - cmake --build . --target install && ctest -V http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/998d89da/proton-c/src/tests/valgrind.supp ---------------------------------------------------------------------- diff --git a/proton-c/src/tests/valgrind.supp b/proton-c/src/tests/valgrind.supp index 505fc57..79fc998 100644 --- a/proton-c/src/tests/valgrind.supp +++ b/proton-c/src/tests/valgrind.supp @@ -74,10 +74,8 @@ SSL does a number of uninitialized accesses (expected) 7 Memcheck:Cond fun:ASN1_STRING_set - ... - fun:PEM_ASN1_read_bio - fun:SSL_CTX_use_certificate_chain_file - fun:pn_ssl_domain_set_credentials + fun:ASN1_mbstring_ncopy + fun:ASN1_mbstring_copy } { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
