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
920a335e
Kaydet (Commit)
920a335e
authored
Agu 05, 2015
tarafından
Zachary Ware
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #24751: When running regrtest with '-w', don't fail if re-run succeeds.
üst
1ae28d2f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
regrtest.py
Lib/test/regrtest.py
+8
-3
NEWS
Misc/NEWS
+4
-0
No files found.
Lib/test/regrtest.py
Dosyayı görüntüle @
920a335e
...
...
@@ -812,7 +812,7 @@ def main(tests=None, **kwargs):
if
ns
.
verbose2
and
bad
:
print
(
"Re-running failed tests in verbose mode"
)
for
test
in
bad
:
for
test
in
bad
[:]
:
print
(
"Re-running test
%
r in verbose mode"
%
test
)
sys
.
stdout
.
flush
()
try
:
...
...
@@ -823,8 +823,13 @@ def main(tests=None, **kwargs):
# print a newline separate from the ^C
print
()
break
except
:
raise
else
:
if
ok
[
0
]
in
{
PASSED
,
ENV_CHANGED
,
SKIPPED
,
RESOURCE_DENIED
}:
bad
.
remove
(
test
)
else
:
if
bad
:
print
(
count
(
len
(
bad
),
'test'
),
"failed again:"
)
printlist
(
bad
)
if
ns
.
single
:
if
next_single_test
:
...
...
Misc/NEWS
Dosyayı görüntüle @
920a335e
...
...
@@ -380,6 +380,10 @@ IDLE
Tests
-----
- Issue #24751: When running regrtest with the ``-w`` command line option,
a test run is no longer marked as a failure if all tests succeed when
re-run.
- Issue #21520: test_zipfile no longer fails if the word '
bad
' appears
anywhere in the name of the current directory.
...
...
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