mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Merged revisions 64356 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r64356 | benjamin.peterson | 2008-06-17 17:40:44 -0500 (Tue, 17 Jun 2008) | 1 line skip test_multiprocessing when /dev/shm doesn't exist. This seems to be a chroot problem in the buildbot env. ........
This commit is contained in:
parent
c2c5e00d9d
commit
3c0dd067c6
1 changed files with 3 additions and 0 deletions
|
@ -1755,6 +1755,9 @@ globals().update(testcases_threads)
|
|||
#
|
||||
|
||||
def test_main(run=None):
|
||||
if sys.platform.startswith("linux") and not os.path.exists("/dev/shm"):
|
||||
raise TestSkipped("Missing required /dev/shm device on Linux!")
|
||||
|
||||
if run is None:
|
||||
from test.support import run_unittest as run
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue