You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by cl...@apache.org on 2014/09/28 02:33:32 UTC

svn commit: r1628030 - /qpid/proton/trunk/tests/python/proton_tests/messenger.py

Author: cliffjansen
Date: Sun Sep 28 00:33:32 2014
New Revision: 1628030

URL: http://svn.apache.org/r1628030
Log:
PROTON-701: skip tests with python selector competing with IOCP selector

Modified:
    qpid/proton/trunk/tests/python/proton_tests/messenger.py

Modified: qpid/proton/trunk/tests/python/proton_tests/messenger.py
URL: http://svn.apache.org/viewvc/qpid/proton/trunk/tests/python/proton_tests/messenger.py?rev=1628030&r1=1628029&r2=1628030&view=diff
==============================================================================
--- qpid/proton/trunk/tests/python/proton_tests/messenger.py (original)
+++ qpid/proton/trunk/tests/python/proton_tests/messenger.py Sun Sep 28 00:33:32 2014
@@ -984,6 +984,11 @@ class Pump:
 class SelectableMessengerTest(common.Test):
 
   def testSelectable(self, count = 1):
+    if os.name=="nt":
+      # Conflict between native OS select() in Pump and IOCP based pn_selector_t
+      # makes this fail on Windows (see PROTON-668).
+      raise Skipped("Invalid test on Windows with IOCP.")
+
     mrcv = Messenger()
     mrcv.passive = True
     mrcv.subscribe("amqp://~0.0.0.0:1234")



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