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
cdf6cd9f
Kaydet (Commit)
cdf6cd9f
authored
Ock 05, 2012
tarafından
Vinay Sajip
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Closes #13699. Skipped two tests if Python is optimised.
üst
98492a50
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 @
cdf6cd9f
...
@@ -662,6 +662,8 @@ class PyPrintTests(DebuggerTests):
...
@@ -662,6 +662,8 @@ class PyPrintTests(DebuggerTests):
self
.
assertMultilineMatches
(
bt
,
self
.
assertMultilineMatches
(
bt
,
r".*\nlocal 'args' = \(1, 2, 3\)\n.*"
)
r".*\nlocal 'args' = \(1, 2, 3\)\n.*"
)
@unittest.skipIf
(
python_is_optimized
(),
"Python was compiled with optimizations"
)
@unittest.skipUnless
(
HAS_PYUP_PYDOWN
,
"test requires py-up/py-down commands"
)
@unittest.skipUnless
(
HAS_PYUP_PYDOWN
,
"test requires py-up/py-down commands"
)
def
test_print_after_up
(
self
):
def
test_print_after_up
(
self
):
bt
=
self
.
get_stack_trace
(
script
=
self
.
get_sample_script
(),
bt
=
self
.
get_stack_trace
(
script
=
self
.
get_sample_script
(),
...
@@ -695,6 +697,8 @@ class PyLocalsTests(DebuggerTests):
...
@@ -695,6 +697,8 @@ class PyLocalsTests(DebuggerTests):
r".*\nargs = \(1, 2, 3\)\n.*"
)
r".*\nargs = \(1, 2, 3\)\n.*"
)
@unittest.skipUnless
(
HAS_PYUP_PYDOWN
,
"test requires py-up/py-down commands"
)
@unittest.skipUnless
(
HAS_PYUP_PYDOWN
,
"test requires py-up/py-down commands"
)
@unittest.skipIf
(
python_is_optimized
(),
"Python was compiled with optimizations"
)
def
test_locals_after_up
(
self
):
def
test_locals_after_up
(
self
):
bt
=
self
.
get_stack_trace
(
script
=
self
.
get_sample_script
(),
bt
=
self
.
get_stack_trace
(
script
=
self
.
get_sample_script
(),
cmds_after_breakpoint
=
[
'py-up'
,
'py-locals'
])
cmds_after_breakpoint
=
[
'py-up'
,
'py-locals'
])
...
...
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