mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
SRFI-64: Make the log file's port line-buffered.
* srfi/srfi-64.upstream.scm (test-on-group-begin-simple): Make LOG-FILE line-buffered.
This commit is contained in:
parent
bbb76f6f71
commit
c5a855c481
1 changed files with 3 additions and 1 deletions
|
@ -314,7 +314,9 @@ (define (test-on-group-begin-simple runner suite-name count)
|
|||
(guile-2
|
||||
(with-fluids ((%default-port-encoding
|
||||
"UTF-8"))
|
||||
(open-output-file log-file-name)))
|
||||
(let ((p (open-output-file log-file-name)))
|
||||
(setvbuf p _IOLBF)
|
||||
p)))
|
||||
(else (open-output-file log-file-name)))))
|
||||
(display "%%%% Starting test " log-file)
|
||||
(display suite-name log-file)
|
||||
|
|
Loading…
Reference in a new issue