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
e56fb8f6
Kaydet (Commit)
e56fb8f6
authored
Eyl 22, 2016
tarafından
Christian Heimes
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add Lib/test/ssltests.py for faster testing of OpenSSL
üst
37471dc6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
0 deletions
+36
-0
ssltests.py
Lib/test/ssltests.py
+36
-0
No files found.
Lib/test/ssltests.py
0 → 100644
Dosyayı görüntüle @
e56fb8f6
# Convenience test module to run all of the OpenSSL-related tests in the
# standard library.
import
ssl
import
sys
import
subprocess
TESTS
=
[
'test_ensurepip.py'
,
'test_ftplib'
,
'test_hashlib'
,
'test_hmac'
,
'test_httplib'
,
'test_imaplib'
,
'test_nntplib'
,
'test_poplib'
,
'test_ssl'
,
'test_smtplib'
,
'test_smtpnet'
,
'test_urllib2_localnet'
,
'test_xmlrpc'
]
def
run_regrtests
(
*
extra_args
):
print
(
ssl
.
OPENSSL_VERSION
)
args
=
[
sys
.
executable
,
'-Werror'
,
'-bb'
,
# turn warnings into exceptions
'-m'
,
'test.regrtest'
,
]
if
not
extra_args
:
args
.
extend
([
'-r'
,
# randomize
'-w'
,
# re-run failed tests with -v
'-u'
,
'network'
,
# use network
'-u'
,
'urlfetch'
,
# download test vectors
])
else
:
args
.
extend
(
extra_args
)
args
.
extend
(
TESTS
)
result
=
subprocess
.
call
(
args
)
sys
.
exit
(
result
)
if
__name__
==
'__main__'
:
run_regrtests
(
*
sys
.
argv
[
1
:])
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