You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by as...@apache.org on 2016/03/03 21:42:34 UTC

qpid-proton git commit: PROTON-1154: Turn off valgrind for tests which fail Travis CI. - This should be reverted if we move to a different Travis environment or find another fix for this problem.

Repository: qpid-proton
Updated Branches:
  refs/heads/master 500f3597c -> e978f0ecb


PROTON-1154: Turn off valgrind for tests which fail Travis CI.
- This should be reverted if we move to a different Travis environment
  or find another fix for this problem.


Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/e978f0ec
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/e978f0ec
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/e978f0ec

Branch: refs/heads/master
Commit: e978f0ecb50663230b8b13a8ee8edb4e3fba0a8f
Parents: 500f359
Author: Andrew Stitcher <as...@apache.org>
Authored: Thu Mar 3 15:02:56 2016 -0500
Committer: Andrew Stitcher <as...@apache.org>
Committed: Thu Mar 3 15:02:56 2016 -0500

----------------------------------------------------------------------
 examples/cpp/example_test.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/e978f0ec/examples/cpp/example_test.py
----------------------------------------------------------------------
diff --git a/examples/cpp/example_test.py b/examples/cpp/example_test.py
index 933cc90..f85d4be 100644
--- a/examples/cpp/example_test.py
+++ b/examples/cpp/example_test.py
@@ -321,7 +321,7 @@ Tock...
         # SSL without SASL
         addr = "amqps://" + pick_addr() + "/examples"
         # Disable valgrind when using OpenSSL
-        out = self.proc(["ssl", addr, self.ssl_certs_dir()]).wait_exit()
+        out = self.proc(["ssl", addr, self.ssl_certs_dir()], skip_valgrind=True).wait_exit()
         expect = "Outgoing client connection connected via SSL.  Server certificate identity CN=test_server\nHello World!"
         expect_found = (out.find(expect) >= 0)
         self.assertEqual(expect_found, True)
@@ -335,7 +335,7 @@ Hello World!
 """
         addr = "amqps://" + pick_addr() + "/examples"
         # Disable valgrind when using OpenSSL
-        out = self.proc(["ssl_client_cert", addr, self.ssl_certs_dir()]).wait_exit()
+        out = self.proc(["ssl_client_cert", addr, self.ssl_certs_dir()], skip_valgrind=True).wait_exit()
         expect_found = (out.find(expect) >= 0)
         self.assertEqual(expect_found, True)
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org