Force the summary file to be opened in UTF-8.

After all the default summary output contains the “✓” character and that
won't fit in the ascii external format.

Fixes #1103.
This commit is contained in:
Dimitri Fontaine 2020-04-03 23:49:20 +02:00
parent 49910027c5
commit 14fb15bfbd

View File

@ -340,6 +340,7 @@
(let* ((summary-stream (when *summary-pathname*
(open *summary-pathname*
:direction :output
:external-format :utf-8
:if-exists :rename
:if-does-not-exist :create)))
(*report-stream* (or summary-stream *standard-output*)))