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
fc3fc337
Kaydet (Commit)
fc3fc337
authored
Ock 30, 2001
tarafından
Moshe Zadka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Checking in patch #103478 -- makes popen2 and fork1 tested on BeOS.
Tested for not breaking builds on Linux.
üst
87eb4f8b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
test_fork1.py
Lib/test/test_fork1.py
+2
-9
test_popen2.py
Lib/test/test_popen2.py
+7
-0
No files found.
Lib/test/test_fork1.py
Dosyayı görüntüle @
fc3fc337
...
...
@@ -6,20 +6,13 @@ child after a fork().
On some systems (e.g. Solaris without posix threads) we find that all
active threads survive in the child after a fork(); this is an error.
On BeOS, you CANNOT mix threads and fork(), the behaviour is undefined.
That's OK, fork() is a grotesque hack anyway. ;-) [cjh]
While BeOS doesn't officially support fork and native threading in
the same application, the present example should work just fine. DC
"""
import
os
,
sys
,
time
,
thread
from
test_support
import
verify
,
verbose
,
TestSkipped
try
:
if
os
.
uname
()[
0
]
==
"BeOS"
:
raise
TestSkipped
,
"can't mix os.fork with threads on BeOS"
except
AttributeError
:
pass
try
:
os
.
fork
except
AttributeError
:
...
...
Lib/test/test_popen2.py
Dosyayı görüntüle @
fc3fc337
...
...
@@ -4,6 +4,8 @@
"""
import
os
import
sys
from
test_support
import
TestSkipped
# popen2 contains its own testing routine
# which is especially useful to see if open files
...
...
@@ -12,6 +14,11 @@ import os
def
main
():
print
"Test popen2 module:"
if
sys
.
platform
[:
4
]
==
'beos'
and
__name__
!=
'__main__'
:
# Locks get messed up or something. Generally we're supposed
# to avoid mixing "posix" fork & exec with native threads, and
# they may be right about that after all.
raise
TestSkipped
,
"popen2() doesn't work during import on BeOS"
try
:
from
os
import
popen
except
ImportError
:
...
...
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