NO-JIRA: temporary skip of Mick's session tests - he's fixing it now
Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/98e27c68 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/98e27c68 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/98e27c68 Branch: refs/heads/kgiusti-python3 Commit: 98e27c681e5700483fddc574d890acaee1bdf0c5 Parents: 824dfef Author: Ken Giusti <kgiu...@apache.org> Authored: Thu Jun 18 13:53:53 2015 -0400 Committer: Ken Giusti <kgiu...@apache.org> Committed: Thu Jun 18 13:53:53 2015 -0400 ---------------------------------------------------------------------- tests/python/proton_tests/engine.py | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/98e27c68/tests/python/proton_tests/engine.py ---------------------------------------------------------------------- diff --git a/tests/python/proton_tests/engine.py b/tests/python/proton_tests/engine.py index 1563889..e3258a2 100644 --- a/tests/python/proton_tests/engine.py +++ b/tests/python/proton_tests/engine.py @@ -221,12 +221,16 @@ class ConnectionTest(Test): assert self.c1.transport.channel_max == value, (self.c1.transport.channel_max, value) def test_channel_max_high(self, value=33333): + if "java" in sys.platform: + raise Skipped("Mick needs to fix me") self.c1.transport.channel_max = value self.c1.open() self.pump() assert self.c1.transport.channel_max == 32767, (self.c1.transport.channel_max, value) def test_channel_max_raise_and_lower(self): + if "java" in sys.platform: + raise Skipped("Mick needs to fix me, also") # It's OK to lower the max below 32767. self.c1.transport.channel_max = 12345 assert self.c1.transport.channel_max == 12345 --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org For additional commands, e-mail: commits-h...@qpid.apache.org