Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
221ef67f
Kaydet (Commit)
221ef67f
authored
Kas 22, 2011
tarafından
Charles-François Natali
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #12156: Skip test_multiprocessing on systems which don't support enough
POSIX semaphores (among which FreeBSD < 8).
üst
98f22d2c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
test_multiprocessing.py
Lib/test/test_multiprocessing.py
+18
-0
No files found.
Lib/test/test_multiprocessing.py
Dosyayı görüntüle @
221ef67f
...
...
@@ -115,6 +115,22 @@ except ImportError:
Structure
=
object
c_int
=
c_double
=
None
def
check_enough_semaphores
():
"""Check that the system supports enough semaphores to run the test."""
# minimum number of semaphores available according to POSIX
nsems_min
=
256
try
:
nsems
=
os
.
sysconf
(
"SC_SEM_NSEMS_MAX"
)
except
(
AttributeError
,
ValueError
):
# sysconf not available or setting not available
return
if
nsems
==
-
1
or
nsems
>=
nsems_min
:
return
raise
unittest
.
SkipTest
(
"The OS doesn't support enough semaphores "
"to run the test (required:
%
d)."
%
nsems_min
)
#
# Creates a wrapper for a function which records the time it takes to finish
#
...
...
@@ -2349,6 +2365,8 @@ def test_main(run=None):
except
OSError
:
raise
unittest
.
SkipTest
(
"OSError raises on RLock creation, see issue 3111!"
)
check_enough_semaphores
()
if
run
is
None
:
from
test.support
import
run_unittest
as
run
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment