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
f7f1bb7f
Kaydet (Commit)
f7f1bb7f
authored
Mar 03, 2005
tarafından
Peter Astrand
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Only run extensive subprocess tests if -usubprocess to regrtest is specified. Fixes #1124637
üst
23109f00
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
regrtest.py
Lib/test/regrtest.py
+3
-1
test_subprocess.py
Lib/test/test_subprocess.py
+4
-3
No files found.
Lib/test/regrtest.py
Dosyayı görüntüle @
f7f1bb7f
...
...
@@ -93,6 +93,8 @@ resources to test. Currently only the following are defined:
in the standard library and test suite. This takes
a long time.
subprocess Run all tests for the subprocess module.
To enable all resources except one, use '-uall,-<resource>'. For
example, to run all the tests except for the bsddb tests, give the
option '-uall,-bsddb'.
...
...
@@ -136,7 +138,7 @@ if sys.platform == 'darwin':
from
test
import
test_support
RESOURCE_NAMES
=
(
'audio'
,
'curses'
,
'largefile'
,
'network'
,
'bsddb'
,
'decimal'
,
'compiler'
)
'decimal'
,
'compiler'
,
'subprocess'
)
def
usage
(
code
,
msg
=
''
):
...
...
Lib/test/test_subprocess.py
Dosyayı görüntüle @
f7f1bb7f
...
...
@@ -382,9 +382,10 @@ class ProcessTestCase(unittest.TestCase):
def
test_no_leaking
(
self
):
# Make sure we leak no resources
max_handles
=
1026
# too much for most UNIX systems
if
mswindows
:
max_handles
=
65
# a full test is too slow on Windows
if
test_support
.
is_resource_enabled
(
"subprocess"
)
and
not
mswindows
:
max_handles
=
1026
# too much for most UNIX systems
else
:
max_handles
=
65
for
i
in
range
(
max_handles
):
p
=
subprocess
.
Popen
([
sys
.
executable
,
"-c"
,
"import sys;sys.stdout.write(sys.stdin.read())"
],
...
...
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