This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author skrah
Recipients brian.curtin, catalin.iacob, georg.brandl, ocean-city, pitrou, skrah, vstinner
Date 2011-12-13.22:52:49
SpamBayes Score 0.00026940077
Marked as misclassified No
Message-id <1323816770.41.0.633011627267.issue9116@psf.upfronthosting.co.za>
In-reply-to
Content
I just tried out http://www.bitvise.com/winsshd , which is free for personal
and noncommercial use. If you run the tests via an ssh connection, WinSSHD
automatically translates pop-ups into error messages:

C:\Users\stefan\cdecimal\PCbuild>python.exe -m test -uall test_capi
[1/1] test_capi
Warning -- threading._dangling was modified by test_capi
test test_capi failed -- Traceback (most recent call last):
  File "C:\Users\stefan\cdecimal\lib\test\test_capi.py", line 51, in test_no_FatalError_infinite_loop
    b'Fatal Python error:'
AssertionError: b"Fatal Python error: PyThreadState_Get: no current thread\n\r\nThis application has requested the Runtime to terminate it in an unusual way.\nPlease contact the application's support team for more information." != b'Fatal Python error: PyThreadState_Get: no current thread'

1 test failed:
    test_capi                              



Thus, by using ...

   self.assertIn(b'Fatal Python error:', err.rstrip())

in test_capi, the tests pass without any further intervention! This is most
interesting, to the point that I'm considering setting up a buildbot.
History
Date User Action Args
2011-12-13 22:52:50skrahsetrecipients: + skrah, georg.brandl, pitrou, vstinner, ocean-city, brian.curtin, catalin.iacob
2011-12-13 22:52:50skrahsetmessageid: <1323816770.41.0.633011627267.issue9116@psf.upfronthosting.co.za>
2011-12-13 22:52:49skrahlinkissue9116 messages
2011-12-13 22:52:49skrahcreate