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
05585cbd
Kaydet (Commit)
05585cbd
authored
Mar 31, 2011
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #11393: test_faulthandler checks the exitcode after the output
üst
f0480750
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
test_faulthandler.py
Lib/test/test_faulthandler.py
+15
-15
No files found.
Lib/test/test_faulthandler.py
Dosyayı görüntüle @
05585cbd
...
...
@@ -37,7 +37,7 @@ def temporary_filename():
support
.
unlink
(
filename
)
class
FaultHandlerTests
(
unittest
.
TestCase
):
def
get_output
(
self
,
code
,
expect_success
,
filename
=
None
):
def
get_output
(
self
,
code
,
filename
=
None
):
"""
Run the specified code in Python (in a new child process) and read the
output from the standard error or from a file (if filename is set).
...
...
@@ -53,10 +53,6 @@ class FaultHandlerTests(unittest.TestCase):
process
=
script_helper
.
spawn_python
(
'-c'
,
code
,
**
options
)
stdout
,
stderr
=
process
.
communicate
()
exitcode
=
process
.
wait
()
if
expect_success
:
self
.
assertEqual
(
exitcode
,
0
)
else
:
self
.
assertNotEqual
(
exitcode
,
0
)
if
filename
:
with
open
(
filename
,
"rb"
)
as
fp
:
output
=
fp
.
read
()
...
...
@@ -66,7 +62,7 @@ class FaultHandlerTests(unittest.TestCase):
output
=
re
.
sub
(
'Current thread 0x[0-9a-f]+'
,
'Current thread XXX'
,
output
)
return
output
.
splitlines
()
return
output
.
splitlines
()
,
exitcode
def
check_fatal_error
(
self
,
code
,
line_number
,
name_regex
,
filename
=
None
,
all_threads
=
False
,
other_regex
=
None
):
...
...
@@ -92,9 +88,10 @@ class FaultHandlerTests(unittest.TestCase):
header
=
re
.
escape
(
header
))
if
other_regex
:
regex
+=
'|'
+
other_regex
output
=
self
.
get_output
(
code
,
Fals
e
,
filename
)
output
,
exitcode
=
self
.
get_output
(
cod
e
,
filename
)
output
=
'
\n
'
.
join
(
output
)
self
.
assertRegex
(
output
,
regex
)
self
.
assertNotEqual
(
exitcode
,
0
)
def
test_read_null
(
self
):
self
.
check_fatal_error
(
"""
...
...
@@ -206,10 +203,11 @@ faulthandler.disable()
faulthandler._read_null()
"""
.
strip
()
not_expected
=
'Fatal Python error'
stderr
=
self
.
get_output
(
code
,
Fals
e
)
stderr
,
exitcode
=
self
.
get_output
(
cod
e
)
stder
=
'
\n
'
.
join
(
stderr
)
self
.
assertTrue
(
not_expected
not
in
stderr
,
"
%
r is present in
%
r"
%
(
not_expected
,
stderr
))
self
.
assertNotEqual
(
exitcode
,
0
)
def
test_is_enabled
(
self
):
was_enabled
=
faulthandler
.
is_enabled
()
...
...
@@ -258,8 +256,9 @@ funcA()
' File "<string>", line 11 in funcA'
,
' File "<string>", line 13 in <module>'
]
trace
=
self
.
get_output
(
code
,
Tru
e
,
filename
)
trace
,
exitcode
=
self
.
get_output
(
cod
e
,
filename
)
self
.
assertEqual
(
trace
,
expected
)
self
.
assertEqual
(
exitcode
,
0
)
def
test_dump_traceback
(
self
):
self
.
check_dump_traceback
(
None
)
...
...
@@ -304,7 +303,7 @@ waiter.stop.set()
waiter.join()
"""
.
strip
()
code
=
code
.
format
(
filename
=
repr
(
filename
))
output
=
self
.
get_output
(
code
,
Tru
e
,
filename
)
output
,
exitcode
=
self
.
get_output
(
cod
e
,
filename
)
output
=
'
\n
'
.
join
(
output
)
if
filename
:
lineno
=
8
...
...
@@ -324,6 +323,7 @@ Current thread XXX:
"""
.
strip
()
regex
=
regex
.
format
(
lineno
=
lineno
)
self
.
assertRegex
(
output
,
regex
)
self
.
assertEqual
(
exitcode
,
0
)
def
test_dump_traceback_threads
(
self
):
self
.
check_dump_traceback_threads
(
None
)
...
...
@@ -378,7 +378,7 @@ if file is not None:
repeat
=
repeat
,
cancel
=
cancel
,
)
trace
=
self
.
get_output
(
code
,
Tru
e
,
filename
)
trace
,
exitcode
=
self
.
get_output
(
cod
e
,
filename
)
trace
=
'
\n
'
.
join
(
trace
)
if
repeat
:
...
...
@@ -388,6 +388,7 @@ if file is not None:
header
=
'Thread 0x[0-9a-f]+:
\n
'
regex
=
expected_traceback
(
7
,
30
,
header
,
count
=
count
)
self
.
assertRegex
(
trace
,
'^
%
s$'
%
regex
)
self
.
assertEqual
(
exitcode
,
0
)
@unittest.skipIf
(
not
hasattr
(
faulthandler
,
'dump_tracebacks_later'
),
'need faulthandler.dump_tracebacks_later()'
)
...
...
@@ -443,16 +444,15 @@ if file is not None:
has_filename
=
bool
(
filename
),
all_threads
=
all_threads
,
)
trace
=
self
.
get_output
(
code
,
Tru
e
,
filename
)
trace
,
exitcode
=
self
.
get_output
(
cod
e
,
filename
)
trace
=
'
\n
'
.
join
(
trace
)
if
all_threads
:
regex
=
'Current thread XXX:
\n
'
else
:
regex
=
'Traceback
\
(most recent call first
\
):
\n
'
regex
=
expected_traceback
(
6
,
14
,
regex
)
self
.
assertTrue
(
re
.
match
(
regex
,
trace
),
"[
%
s] doesn't match [
%
s]: use_filename=
%
s, all_threads=
%
s"
%
(
regex
,
trace
,
bool
(
filename
),
all_threads
))
self
.
assertRegex
(
trace
,
'^
%
s$'
%
regex
)
self
.
assertEqual
(
exitcode
,
0
)
def
test_register
(
self
):
self
.
check_register
()
...
...
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