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
12c2945c
Kaydet (Commit)
12c2945c
authored
Eki 08, 2015
tarafından
Steve Dower
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #23919: Prevents assert dialogs appearing in the test suite.
üst
b6c9572f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
3 deletions
+13
-3
cmdline.py
Lib/test/libregrtest/cmdline.py
+4
-0
setup.py
Lib/test/libregrtest/setup.py
+9
-3
No files found.
Lib/test/libregrtest/cmdline.py
Dosyayı görüntüle @
12c2945c
...
...
@@ -304,6 +304,10 @@ def _parse_args(args, **kwargs):
if
ns
.
pgo
and
(
ns
.
verbose
or
ns
.
verbose2
or
ns
.
verbose3
):
parser
.
error
(
"--pgo/-v don't go together!"
)
if
ns
.
nowindows
:
print
(
"Warning: the --nowindows (-n) option is deprecated. "
"Use -vv to display assertions in stderr."
,
file
=
sys
.
stderr
)
if
ns
.
quiet
:
ns
.
verbose
=
0
if
ns
.
timeout
is
not
None
:
...
...
Lib/test/libregrtest/setup.py
Dosyayı görüntüle @
12c2945c
...
...
@@ -75,8 +75,11 @@ def setup_tests(ns):
if
ns
.
threshold
is
not
None
:
gc
.
set_threshold
(
ns
.
threshold
)
if
ns
.
nowindows
:
try
:
import
msvcrt
except
ImportError
:
pass
else
:
msvcrt
.
SetErrorMode
(
msvcrt
.
SEM_FAILCRITICALERRORS
|
msvcrt
.
SEM_NOALIGNMENTFAULTEXCEPT
|
msvcrt
.
SEM_NOGPFAULTERRORBOX
|
...
...
@@ -88,8 +91,11 @@ def setup_tests(ns):
pass
else
:
for
m
in
[
msvcrt
.
CRT_WARN
,
msvcrt
.
CRT_ERROR
,
msvcrt
.
CRT_ASSERT
]:
msvcrt
.
CrtSetReportMode
(
m
,
msvcrt
.
CRTDBG_MODE_FILE
)
msvcrt
.
CrtSetReportFile
(
m
,
msvcrt
.
CRTDBG_FILE_STDERR
)
if
ns
.
verbose
and
ns
.
verbose
>=
2
:
msvcrt
.
CrtSetReportMode
(
m
,
msvcrt
.
CRTDBG_MODE_FILE
)
msvcrt
.
CrtSetReportFile
(
m
,
msvcrt
.
CRTDBG_FILE_STDERR
)
else
:
msvcrt
.
CrtSetReportMode
(
m
,
0
)
support
.
use_resources
=
ns
.
use_resources
...
...
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