Repository: qpid-proton Updated Branches: refs/heads/master 73aad7123 -> 19a303572
PROTON-1071: disable ApplicationEventTest temporarily on Windows until fixed. Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/19a30357 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/19a30357 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/19a30357 Branch: refs/heads/master Commit: 19a30357297f9d637f1d9f4e67d4de6191907771 Parents: 73aad71 Author: Clifford Jansen <cliffjan...@apache.org> Authored: Tue Dec 8 10:53:49 2015 -0800 Committer: Clifford Jansen <cliffjan...@apache.org> Committed: Tue Dec 8 10:53:49 2015 -0800 ---------------------------------------------------------------------- tests/python/proton_tests/reactor.py | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/19a30357/tests/python/proton_tests/reactor.py ---------------------------------------------------------------------- diff --git a/tests/python/proton_tests/reactor.py b/tests/python/proton_tests/reactor.py index c8cd894..eeddb2f 100644 --- a/tests/python/proton_tests/reactor.py +++ b/tests/python/proton_tests/reactor.py @@ -428,6 +428,9 @@ class ApplicationEventTest(Test): if not hasattr(os, 'pipe'): # KAG: seems like Jython doesn't have an os.pipe() method raise SkipTest() + if os.name=="nt": + # Correct implementation on Windows is complicated + raise SkipTest("PROTON-1071") self.server = ApplicationEventTest.MyTestServer() self.server.reactor.handler.add(ApplicationEventTest.MyHandler(self)) self.event_injector = EventInjector() --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org For additional commands, e-mail: commits-h...@qpid.apache.org