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 flox
Recipients flox, nirai
Date 2010-01-01.22:43:26
SpamBayes Score 2.6838108e-05
Marked as misclassified No
Message-id <1262385807.68.0.0928739561358.issue7564@psf.upfronthosting.co.za>
In-reply-to
Content
It fails if the test is run in background, and there's another process
in foreground.

Example 1:

~ $ (./python Lib/test/regrtest.py test_ioctl &) && tail -f /dev/null
test_ioctl
test test_ioctl failed -- multiple errors occurred; run in verbose mode
for details
1 test failed:
    test_ioctl


Example 2 (a shell script):

~ $ cat run_ioctl.sh
#!/bin/sh
./python Lib/test/regrtest.py -v test_ioctl > test_ioctl.log &
tail -f test_ioctl.log
History
Date User Action Args
2010-01-01 22:43:27floxsetrecipients: + flox, nirai
2010-01-01 22:43:27floxsetmessageid: <1262385807.68.0.0928739561358.issue7564@psf.upfronthosting.co.za>
2010-01-01 22:43:26floxlinkissue7564 messages
2010-01-01 22:43:26floxcreate