Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
OpenGEODE
Commits
bf5ba191
Commit
bf5ba191
authored
Feb 04, 2018
by
Maxime Perrotin
Browse files
Decode Latin1 encoding, not utf8
parent
c78f5321
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/regression/test.py
View file @
bf5ba191
...
...
@@ -57,10 +57,10 @@ def summarize(results, elapsed):
print
(
"ERROR: %s %s"
%
(
path
,
rule
))
if
stdout
:
print
(
"-- stdout "
+
"-"
*
70
)
print
(
stdout
.
decode
())
print
(
stdout
.
decode
(
"latin-1"
))
if
stderr
:
print
(
"-- stderr "
+
"-"
*
70
)
print
(
stderr
.
decode
())
print
(
stderr
.
decode
(
"latin-1"
))
print
(
"-"
*
80
)
print
(
"Finished in %.3fs"
%
elapsed
)
print
(
"%s tests, %s errors"
%
(
len
(
results
),
failed
))
...
...
Write
Preview
Supports
Markdown
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