[issue19765] test_asyncio: test_create_server() failed on x86 Windows Server 2008 [SB] 3.x

2013-11-27 Thread STINNER Victor

STINNER Victor added the comment:

I didn't see the failure recently, so I hope that it was fixed. I close the 
issue. I will reopen it if I see the failure again.

Thanks Guido for your fix.

--
resolution:  - fixed
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue19765
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue19765] test_asyncio: test_create_server() failed on x86 Windows Server 2008 [SB] 3.x

2013-11-25 Thread STINNER Victor

New submission from STINNER Victor:

http://buildbot.python.org/all/builders/x86%20Windows%20Server%202008%20%5BSB%5D%203.x/builds/1794/steps/test/logs/stdio

==
FAIL: test_create_server (test.test_asyncio.test_events.ProactorEventLoopTests)
--
Traceback (most recent call last):
  File 
E:\home\cpython\buildslave\x86\3.x.snakebite-win2k8r2sp1-x86\build\lib\test\test_asyncio\test_events.py,
 line 563, in test_create_server
self.assertIsInstance(proto, MyProto)
AssertionError: None is not an instance of class 
'test.test_asyncio.test_events.MyProto'

--

--
components: Tests
keywords: buildbot
messages: 204315
nosy: gvanrossum, haypo
priority: normal
severity: normal
status: open
title: test_asyncio: test_create_server() failed on x86 Windows Server 2008 
[SB] 3.x
versions: Python 3.4

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue19765
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue19765] test_asyncio: test_create_server() failed on x86 Windows Server 2008 [SB] 3.x

2013-11-25 Thread Guido van Rossum

Guido van Rossum added the comment:

Can you try this fix?

diff -r 8d0206f97439 Lib/test/test_asyncio/test_events.py
--- a/Lib/test/test_asyncio/test_events.py  Sun Nov 24 22:41:35 2013 -0800
+++ b/Lib/test/test_asyncio/test_events.py  Mon Nov 25 07:48:29 2013 -0800
@@ -559,7 +559,7 @@
 client = socket.socket()
 client.connect(('127.0.0.1', port))
 client.sendall(b'xxx')
-test_utils.run_briefly(self.loop)
+test_utils.run_until(self.loop, lambda: proto is not None, 10)
 self.assertIsInstance(proto, MyProto)
 self.assertEqual('INITIAL', proto.state)
 test_utils.run_briefly(self.loop)

(I can also just commit that and the test_unix_events.py fix for AIX and hope 
for the best.)

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue19765
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue19765] test_asyncio: test_create_server() failed on x86 Windows Server 2008 [SB] 3.x

2013-11-25 Thread STINNER Victor

STINNER Victor added the comment:

 Can you try this fix?

If you are asking to me: again, I don't own a Windows 2008 copy. Just commit 
and then watch buildbots :-)

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue19765
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue19765] test_asyncio: test_create_server() failed on x86 Windows Server 2008 [SB] 3.x

2013-11-25 Thread Antoine Pitrou

Changes by Antoine Pitrou pit...@free.fr:


--
nosy: +sbt

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue19765
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue19765] test_asyncio: test_create_server() failed on x86 Windows Server 2008 [SB] 3.x

2013-11-25 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 368b74823c76 by Guido van Rossum in branch 'default':
asyncio: Hopeful fix for issue 19765.
http://hg.python.org/cpython/rev/368b74823c76

--
nosy: +python-dev

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue19765
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com