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
f6eb31fd
Kaydet (Commit)
f6eb31fd
authored
Kas 24, 2013
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #19743: fix test_gdb on some optimized Python builds
üst
3ab9cfc5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
test_gdb.py
Lib/test/test_gdb.py
+8
-4
No files found.
Lib/test/test_gdb.py
Dosyayı görüntüle @
f6eb31fd
...
...
@@ -145,7 +145,7 @@ class DebuggerTests(unittest.TestCase):
args
+=
[
script
]
# print args
# print
' '.join(args
)
# print
(' '.join(args)
)
# Use "args" to invoke gdb, capturing stdout, stderr:
out
,
err
=
run_gdb
(
*
args
,
PYTHONHASHSEED
=
PYTHONHASHSEED
)
...
...
@@ -191,6 +191,11 @@ class DebuggerTests(unittest.TestCase):
#
# For a nested structure, the first time we hit the breakpoint will
# give us the top-level structure
# NOTE: avoid decoding too much of the traceback as some
# undecodable characters may lurk there in optimized mode
# (issue #19743).
cmds_after_breakpoint
=
cmds_after_breakpoint
or
[
"backtrace 1"
]
gdb_output
=
self
.
get_stack_trace
(
source
,
breakpoint
=
BREAKPOINT_FN
,
cmds_after_breakpoint
=
cmds_after_breakpoint
,
import_site
=
import_site
)
...
...
@@ -221,11 +226,10 @@ class PrettyPrintTests(DebuggerTests):
gdb_output
=
self
.
get_stack_trace
(
'id(42)'
)
self
.
assertTrue
(
BREAKPOINT_FN
in
gdb_output
)
def
assertGdbRepr
(
self
,
val
,
exp_repr
=
None
,
cmds_after_breakpoint
=
None
):
def
assertGdbRepr
(
self
,
val
,
exp_repr
=
None
):
# Ensure that gdb's rendering of the value in a debugged process
# matches repr(value) in this process:
gdb_repr
,
gdb_output
=
self
.
get_gdb_repr
(
'id('
+
ascii
(
val
)
+
')'
,
cmds_after_breakpoint
)
gdb_repr
,
gdb_output
=
self
.
get_gdb_repr
(
'id('
+
ascii
(
val
)
+
')'
)
if
not
exp_repr
:
exp_repr
=
repr
(
val
)
self
.
assertEqual
(
gdb_repr
,
exp_repr
,
...
...
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