[issue3111] multiprocessing ppc Debian/ ia64 Ubuntu compilation error

Jesse Noller report at bugs.python.org
Tue Jun 17 17:07:52 CEST 2008


Jesse Noller <jnoller at gmail.com> added the comment:

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?

----------
nosy: +Rhamphoryncus, benjamin.peterson

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue3111>
_______________________________________


More information about the Python-bugs-list mailing list