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
f7cc6035
Kaydet (Commit)
f7cc6035
authored
Eyl 17, 2016
tarafından
Zachary Ware
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Skip a sysconfig test if _ctypes is not available.
Also migrates test_sysconfig to unittest discovery.
üst
f40d4ddf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
test_sysconfig.py
Lib/test/test_sysconfig.py
+4
-6
No files found.
Lib/test/test_sysconfig.py
Dosyayı görüntüle @
f7cc6035
...
...
@@ -5,7 +5,7 @@ import subprocess
import
shutil
from
copy
import
copy
from
test.support
import
(
run_unittest
,
TESTFN
,
unlink
,
check_warnings
,
from
test.support
import
(
import_module
,
TESTFN
,
unlink
,
check_warnings
,
captured_stdout
,
skip_unless_symlink
,
change_cwd
)
import
sysconfig
...
...
@@ -387,7 +387,8 @@ class TestSysConfig(unittest.TestCase):
@unittest.skipUnless
(
sys
.
platform
==
'linux'
,
'Linux-specific test'
)
def
test_triplet_in_ext_suffix
(
self
):
import
ctypes
,
platform
,
re
ctypes
=
import_module
(
'ctypes'
)
import
platform
,
re
machine
=
platform
.
machine
()
suffix
=
sysconfig
.
get_config_var
(
'EXT_SUFFIX'
)
if
re
.
match
(
'(aarch64|arm|mips|ppc|powerpc|s390|sparc)'
,
machine
):
...
...
@@ -435,8 +436,5 @@ class MakefileTests(unittest.TestCase):
})
def
test_main
():
run_unittest
(
TestSysConfig
,
MakefileTests
)
if
__name__
==
"__main__"
:
test_
main
()
unittest
.
main
()
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