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
f1b34ee6
Kaydet (Commit)
f1b34ee6
authored
May 06, 2012
tarafından
Vinay Sajip
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#12660: Skip test_gdb when run from an installed Python.
üst
73954040
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
test_gdb.py
Lib/test/test_gdb.py
+4
-0
No files found.
Lib/test/test_gdb.py
Dosyayı görüntüle @
f1b34ee6
...
...
@@ -7,6 +7,7 @@ import os
import
re
import
subprocess
import
sys
import
sysconfig
import
unittest
import
locale
...
...
@@ -24,6 +25,9 @@ if int(gdb_version_number.group(1)) < 7:
raise
unittest
.
SkipTest
(
"gdb versions before 7.0 didn't support python embedding"
" Saw:
\n
"
+
gdb_version
.
decode
(
'ascii'
,
'replace'
))
if
not
sysconfig
.
is_python_build
():
raise
unittest
.
SkipTest
(
"test_gdb only works on source builds at the moment."
)
# Verify that "gdb" was built with the embedded python support enabled:
cmd
=
"--eval-command=python import sys; print sys.version_info"
p
=
subprocess
.
Popen
([
"gdb"
,
"--batch"
,
cmd
],
...
...
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