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
397c42b8
Kaydet (Commit)
397c42b8
authored
Eki 12, 2015
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge 3.5 (test_eintr)
üst
358af135
60f26691
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
eintr_tester.py
Lib/test/eintrdata/eintr_tester.py
+5
-5
No files found.
Lib/test/eintrdata/eintr_tester.py
Dosyayı görüntüle @
397c42b8
...
...
@@ -66,11 +66,6 @@ class EINTRBaseTest(unittest.TestCase):
if
hasattr
(
faulthandler
,
'cancel_dump_traceback_later'
):
faulthandler
.
cancel_dump_traceback_later
()
@classmethod
def
_sleep
(
cls
):
# default sleep time
time
.
sleep
(
cls
.
sleep_time
)
def
subprocess
(
self
,
*
args
,
**
kw
):
cmd_args
=
(
sys
.
executable
,
'-c'
)
+
args
return
subprocess
.
Popen
(
cmd_args
,
**
kw
)
...
...
@@ -382,6 +377,11 @@ class SignalEINTRTest(EINTRBaseTest):
@unittest.skipUnless
(
hasattr
(
signal
,
'sigwaitinfo'
),
'need signal.sigwaitinfo()'
)
def
test_sigwaitinfo
(
self
):
# Issue #25277: The sleep is a weak synchronization between the parent
# and the child process. If the sleep is too low, the test hangs on
# slow or highly loaded systems.
self
.
sleep_time
=
2.0
signum
=
signal
.
SIGUSR1
pid
=
os
.
getpid
()
...
...
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