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
11cabcf7
Kaydet (Commit)
11cabcf7
authored
Eyl 29, 2010
tarafından
R. David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#7110: have regrtest print test failures and tracebacks to stderr not stdout.
Patch by Sandro Tosi.
üst
c663b58c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
6 deletions
+10
-6
regrtest.py
Lib/test/regrtest.py
+6
-6
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/regrtest.py
Dosyayı görüntüle @
11cabcf7
...
@@ -957,16 +957,16 @@ def runtest_inner(test, verbose, quiet,
...
@@ -957,16 +957,16 @@ def runtest_inner(test, verbose, quiet,
except
KeyboardInterrupt
:
except
KeyboardInterrupt
:
raise
raise
except
support
.
TestFailed
as
msg
:
except
support
.
TestFailed
as
msg
:
print
(
"test"
,
test
,
"failed --"
,
msg
)
print
(
"test"
,
test
,
"failed --"
,
msg
,
file
=
sys
.
stderr
)
sys
.
std
out
.
flush
()
sys
.
std
err
.
flush
()
return
FAILED
,
test_time
return
FAILED
,
test_time
except
:
except
:
type
,
value
=
sys
.
exc_info
()[:
2
]
type
,
value
=
sys
.
exc_info
()[:
2
]
print
(
"test"
,
test
,
"crashed --"
,
str
(
type
)
+
":"
,
value
)
print
(
"test"
,
test
,
"crashed --"
,
str
(
type
)
+
":"
,
value
,
file
=
sys
.
stderr
)
sys
.
std
out
.
flush
()
sys
.
std
err
.
flush
()
if
verbose
or
debug
:
if
verbose
or
debug
:
traceback
.
print_exc
(
file
=
sys
.
std
out
)
traceback
.
print_exc
(
file
=
sys
.
std
err
)
sys
.
std
out
.
flush
()
sys
.
std
err
.
flush
()
return
FAILED
,
test_time
return
FAILED
,
test_time
else
:
else
:
if
refleak
:
if
refleak
:
...
...
Misc/ACKS
Dosyayı görüntüle @
11cabcf7
...
@@ -818,6 +818,7 @@ Frank J. Tobin
...
@@ -818,6 +818,7 @@ Frank J. Tobin
R Lindsay Todd
R Lindsay Todd
Bennett Todd
Bennett Todd
Matias Torchinsky
Matias Torchinsky
Sandro Tosi
Richard Townsend
Richard Townsend
Laurence Tratt
Laurence Tratt
John Tromp
John Tromp
...
...
Misc/NEWS
Dosyayı görüntüle @
11cabcf7
...
@@ -260,6 +260,9 @@ Tools/Demos
...
@@ -260,6 +260,9 @@ Tools/Demos
Tests
Tests
-----
-----
- Issue #7110: regrtest now sends test failure reports and single-failure
tracebacks to stderr rather than stdout.
- Issue #9628: fix runtests.sh -x option so more than one test can be excluded.
- Issue #9628: fix runtests.sh -x option so more than one test can be excluded.
- Issue #9899: Fix test_tkinter.test_font on various platforms. Patch by
- Issue #9899: Fix test_tkinter.test_font on various platforms. Patch by
...
...
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