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
c2ca6db1
Kaydet (Commit)
c2ca6db1
authored
May 06, 2008
tarafından
Christian Heimes
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Disabled some unit tests for the upcoming release. See #2777
üst
f843682f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
test_subprocess.py
Lib/test/test_subprocess.py
+6
-6
No files found.
Lib/test/test_subprocess.py
Dosyayı görüntüle @
c2ca6db1
...
@@ -584,7 +584,7 @@ class ProcessTestCase(unittest.TestCase):
...
@@ -584,7 +584,7 @@ class ProcessTestCase(unittest.TestCase):
os
.
remove
(
fname
)
os
.
remove
(
fname
)
self
.
assertEqual
(
rc
,
47
)
self
.
assertEqual
(
rc
,
47
)
def
test_send_signal
(
self
):
def
DISABLED_
test_send_signal
(
self
):
p
=
subprocess
.
Popen
([
sys
.
executable
,
p
=
subprocess
.
Popen
([
sys
.
executable
,
"-c"
,
"input()"
])
"-c"
,
"input()"
])
...
@@ -592,7 +592,7 @@ class ProcessTestCase(unittest.TestCase):
...
@@ -592,7 +592,7 @@ class ProcessTestCase(unittest.TestCase):
p
.
send_signal
(
signal
.
SIGINT
)
p
.
send_signal
(
signal
.
SIGINT
)
self
.
assertNotEqual
(
p
.
wait
(),
0
)
self
.
assertNotEqual
(
p
.
wait
(),
0
)
def
test_kill
(
self
):
def
DISABLED_
test_kill
(
self
):
p
=
subprocess
.
Popen
([
sys
.
executable
,
p
=
subprocess
.
Popen
([
sys
.
executable
,
"-c"
,
"input()"
])
"-c"
,
"input()"
])
...
@@ -600,7 +600,7 @@ class ProcessTestCase(unittest.TestCase):
...
@@ -600,7 +600,7 @@ class ProcessTestCase(unittest.TestCase):
p
.
kill
()
p
.
kill
()
self
.
assertEqual
(
p
.
wait
(),
-
signal
.
SIGKILL
)
self
.
assertEqual
(
p
.
wait
(),
-
signal
.
SIGKILL
)
def
test_terminate
(
self
):
def
DISABLED_
test_terminate
(
self
):
p
=
subprocess
.
Popen
([
sys
.
executable
,
p
=
subprocess
.
Popen
([
sys
.
executable
,
"-c"
,
"input()"
])
"-c"
,
"input()"
])
...
@@ -678,7 +678,7 @@ class ProcessTestCase(unittest.TestCase):
...
@@ -678,7 +678,7 @@ class ProcessTestCase(unittest.TestCase):
' -c "import sys; sys.exit(47)"'
)
' -c "import sys; sys.exit(47)"'
)
self
.
assertEqual
(
rc
,
47
)
self
.
assertEqual
(
rc
,
47
)
def
test_send_signal
(
self
):
def
DISABLED_
test_send_signal
(
self
):
p
=
subprocess
.
Popen
([
sys
.
executable
,
p
=
subprocess
.
Popen
([
sys
.
executable
,
"-c"
,
"input()"
])
"-c"
,
"input()"
])
...
@@ -686,7 +686,7 @@ class ProcessTestCase(unittest.TestCase):
...
@@ -686,7 +686,7 @@ class ProcessTestCase(unittest.TestCase):
p
.
send_signal
(
signal
.
SIGTERM
)
p
.
send_signal
(
signal
.
SIGTERM
)
self
.
assertNotEqual
(
p
.
wait
(),
0
)
self
.
assertNotEqual
(
p
.
wait
(),
0
)
def
test_kill
(
self
):
def
DISABLED_
test_kill
(
self
):
p
=
subprocess
.
Popen
([
sys
.
executable
,
p
=
subprocess
.
Popen
([
sys
.
executable
,
"-c"
,
"input()"
])
"-c"
,
"input()"
])
...
@@ -694,7 +694,7 @@ class ProcessTestCase(unittest.TestCase):
...
@@ -694,7 +694,7 @@ class ProcessTestCase(unittest.TestCase):
p
.
kill
()
p
.
kill
()
self
.
assertNotEqual
(
p
.
wait
(),
0
)
self
.
assertNotEqual
(
p
.
wait
(),
0
)
def
test_terminate
(
self
):
def
DISABLED_
test_terminate
(
self
):
p
=
subprocess
.
Popen
([
sys
.
executable
,
p
=
subprocess
.
Popen
([
sys
.
executable
,
"-c"
,
"input()"
])
"-c"
,
"input()"
])
...
...
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