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 terry.reedy
Recipients deep42thought, eschwartz, terry.reedy, vstinner, yan12125
Date 2018-10-11.15:06:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1539270388.84.0.788709270274.issue34095@psf.upfronthosting.co.za>
In-reply-to
Content
Additional notes:

I am puzzled that test_idle output starts with test_io, as that is alphabetically in the middle of the files in idle_test/.

There are 2 independent 'test_io' modules: test/test_io, which tests the io module, and idlelib/test_idle/test_io, which tests idlelib.PyShell.PseudoFile and subclasses (which are all derived from io.TextIOBase).  Only the latter is an issue here.  The former is an irrelevant distraction and should not have been included with test_idle in msg321737.

Since log.all ends with "test_writelines (idlelib.idle_test.test_io.PseudeOutputFilesTest) ... /usr/bin/xvfb-run: line 181: ...", I initially thought that test_writelines, in particular, stimulated the failure.  But in the msg321737 output, test_writelines ran 'OK'.

The fact that xvfv ... test_idle runs by itself but not when alphabetically preceding tests are run says that some preceding test alters something.   The failure of test_audioop seems an unlikely cause.  I suspect test__all__, by importing _tkinter either directly or via Tkinter or some IDLE module.  This could be tested with xvfb ... test___all__ test_idle.

Since the tests are mostly run alphabetically and the tkinter tests, test_tcl, test_tk, test_ttk_guionly, and test_ttk_textonly alphabetically follow test_idle, they should not be the cause of the crash during test_idle.  On the other hand, if the test above crashes, and so does 
xvbf ... -ugui test___all__ test_tcl test_tk test_ttk_guionly test_ttk_textonly
then test_idle would be eliminated as the direct culprit.
History
Date User Action Args
2018-10-11 15:06:28terry.reedysetrecipients: + terry.reedy, vstinner, yan12125, eschwartz, deep42thought
2018-10-11 15:06:28terry.reedysetmessageid: <1539270388.84.0.788709270274.issue34095@psf.upfronthosting.co.za>
2018-10-11 15:06:28terry.reedylinkissue34095 messages
2018-10-11 15:06:28terry.reedycreate