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
aee47561
Kaydet (Commit)
aee47561
authored
Eyl 16, 2010
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Relax test condition (fix failures on FreeBSD buildbots)
üst
37ade9cb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
test_gc.py
Lib/test/test_gc.py
+4
-2
No files found.
Lib/test/test_gc.py
Dosyayı görüntüle @
aee47561
...
@@ -495,11 +495,13 @@ class GCTests(unittest.TestCase):
...
@@ -495,11 +495,13 @@ class GCTests(unittest.TestCase):
stderr
=
run_command
(
code
%
"0"
)
stderr
=
run_command
(
code
%
"0"
)
self
.
assertIn
(
b
"gc: 2 uncollectable objects at shutdown"
,
stderr
)
self
.
assertIn
(
b
"gc: 2 uncollectable objects at shutdown"
,
stderr
)
self
.
assertNotIn
(
b
"
[<X 'first'>, <X 'second'>]
"
,
stderr
)
self
.
assertNotIn
(
b
"
<X 'first'>
"
,
stderr
)
# With DEBUG_UNCOLLECTABLE, the garbage list gets printed
# With DEBUG_UNCOLLECTABLE, the garbage list gets printed
stderr
=
run_command
(
code
%
"gc.DEBUG_UNCOLLECTABLE"
)
stderr
=
run_command
(
code
%
"gc.DEBUG_UNCOLLECTABLE"
)
self
.
assertIn
(
b
"gc: 2 uncollectable objects at shutdown"
,
stderr
)
self
.
assertIn
(
b
"gc: 2 uncollectable objects at shutdown"
,
stderr
)
self
.
assertIn
(
b
"[<X 'first'>, <X 'second'>]"
,
stderr
)
self
.
assertTrue
(
(
b
"[<X 'first'>, <X 'second'>]"
in
stderr
)
or
(
b
"[<X 'second'>, <X 'first'>]"
in
stderr
),
stderr
)
# With DEBUG_SAVEALL, no additional message should get printed
# With DEBUG_SAVEALL, no additional message should get printed
# (because gc.garbage also contains normally reclaimable cyclic
# (because gc.garbage also contains normally reclaimable cyclic
# references, and its elements get printed at runtime anyway).
# references, and its elements get printed at runtime anyway).
...
...
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