[issue7564] test_ioctl may fail when run in background

2010-08-08 Thread Florent Xicluna
Florent Xicluna added the comment: Fixed with revision 83839. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue7564] test_ioctl may fail when run in background

2010-03-06 Thread Florent Xicluna
Changes by Florent Xicluna : -- assignee: -> flox priority: low -> normal versions: -Python 2.6, Python 3.1 ___ Python tracker ___ __

[issue7564] test_ioctl may fail when run in background

2010-01-26 Thread Florent Xicluna
Florent Xicluna added the comment: A little more explanatory. -- Added file: http://bugs.python.org/file16014/issue7564_test_ioctl_v2.diff ___ Python tracker ___

[issue7564] test_ioctl may fail when run in background

2010-01-26 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file16013/issue7564_test_ioctl.diff ___ Python tracker ___ ___ Python-bugs-li

[issue7564] test_ioctl may fail when run in background

2010-01-26 Thread R. David Murray
R. David Murray added the comment: Could the skip message be made a little more explanatory? I have no idea why "Process group 1844 is associated with /dev/tty" would mean that test_ioctl would need to be skipped. -- nosy: +r.david.murray ___ Pyth

[issue7564] test_ioctl may fail when run in background

2010-01-26 Thread Florent Xicluna
Florent Xicluna added the comment: Patch to make the "skip" message visible in normal mode: test_ioctl test_ioctl skipped -- Process group 1844 is associated with /dev/tty And in the summary you have the information: 1 test skipped: test_ioctl 1 skip unexpected on linux2: test_ioctl

[issue7564] test_ioctl may fail when run in background

2010-01-26 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file16010/issue7564_test_ioctl.diff ___ Python tracker ___ ___ Python-bugs-li

[issue7564] test_ioctl may fail when run in background

2010-01-26 Thread Florent Xicluna
Florent Xicluna added the comment: Patch to skip the test with the appropriate warning in verbose mode. -- keywords: +patch stage: -> patch review Added file: http://bugs.python.org/file16010/issue7564_test_ioctl.diff ___ Python tracker

[issue7564] test_ioctl may fail when run in background

2010-01-22 Thread STINNER Victor
STINNER Victor added the comment: test_ioctl() gets the process group ID of the foreground process group on /dev/tty. If Python is in foreground, it's equal to the process group ID (os.getpgrp()) or to the session ID (os.getsid(0)). If Python is in background, yes, the test fail. test_ioctl_

[issue7564] test_ioctl may fail when run in background

2010-01-01 Thread Florent Xicluna
Changes by Florent Xicluna : -- title: test_ioctl fails when run in background -> test_ioctl may fail when run in background ___ Python tracker ___ __