Author: gsim
Date: Fri Oct 10 12:58:01 2014
New Revision: 1630863

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

Modified:
    qpid/proton/branches/examples/tests/python/proton_tests/messenger.py

Modified: qpid/proton/branches/examples/tests/python/proton_tests/messenger.py
URL: 
http://svn.apache.org/viewvc/qpid/proton/branches/examples/tests/python/proton_tests/messenger.py?rev=1630863&r1=1630862&r2=1630863&view=diff
==============================================================================
--- qpid/proton/branches/examples/tests/python/proton_tests/messenger.py 
(original)
+++ qpid/proton/branches/examples/tests/python/proton_tests/messenger.py Fri 
Oct 10 12:58:01 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-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org

Reply via email to