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 jnoller
Recipients Rhamphoryncus, barry, benjamin.peterson, jnoller, roudkerk
Date 2008-06-17.15:07:48
SpamBayes Score 0.05826679
Marked as misclassified No
Message-id <1213715272.31.0.485297957671.issue3111@psf.upfronthosting.co.za>
In-reply-to
Content
I believe this is a Linux-specific problem relating to chroot jails 
missing the /dev/shm filesystem. 

I am suggesting we skip the test for now if /dev/shm does not exist, 
via:

if (sys.platform.startswith("linux"):
    if not os.path.exists("/dev/shm"):
        raise TestSkipped("Missing required /dev/shm device on Linux!")

at the top of test_multiprocessing.py

Anyone see a problem with this?
History
Date User Action Args
2008-06-17 15:07:52jnollersetspambayes_score: 0.0582668 -> 0.05826679
recipients: + jnoller, barry, Rhamphoryncus, roudkerk, benjamin.peterson
2008-06-17 15:07:52jnollersetspambayes_score: 0.0582668 -> 0.0582668
messageid: <1213715272.31.0.485297957671.issue3111@psf.upfronthosting.co.za>
2008-06-17 15:07:51jnollerlinkissue3111 messages
2008-06-17 15:07:50jnollercreate