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
86b0fb23
Kaydet (Commit)
86b0fb23
authored
Eki 09, 2012
tarafından
Chris Jerdonek
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #16170: Remove Linux skip from test_subprocess's test_executable test.
üst
455fa0a3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
test_subprocess.py
Lib/test/test_subprocess.py
+8
-5
No files found.
Lib/test/test_subprocess.py
Dosyayı görüntüle @
86b0fb23
...
...
@@ -200,13 +200,16 @@ class ProcessTestCase(BaseTestCase):
p
.
wait
()
self
.
assertEqual
(
47
,
p
.
returncode
)
# TODO: make this test work on Linux.
# This may be failing on Linux because of issue #7774.
@unittest.skipIf
(
sys
.
platform
not
in
(
'win32'
,
'darwin'
),
"possible bug using executable argument on Linux"
)
def
test_executable
(
self
):
# Check that the executable argument works.
self
.
_assert_python
([
"doesnotexist"
,
"-c"
],
executable
=
sys
.
executable
)
#
# On Unix (non-Mac and non-Windows), Python looks at args[0] to
# determine where its standard library is, so we need the directory
# of args[0] to be valid for the Popen() call to Python to succeed.
# See also issue #16170 and issue #7774.
doesnotexist
=
os
.
path
.
join
(
os
.
path
.
dirname
(
sys
.
executable
),
"doesnotexist"
)
self
.
_assert_python
([
doesnotexist
,
"-c"
],
executable
=
sys
.
executable
)
def
test_executable_takes_precedence
(
self
):
# Check that the executable argument takes precedence over args[0].
...
...
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