tests: Keep .log files in objdir.

* tests/gpgscm/tests.scm (open-log-file): Keep the log file in objdir.

--

Before the change, it is at ephemeral temp directory which is removed.
This is not useful at all.  Possibly, it was done before the introduce
of ephemeral temp directory for each test and not changed.

Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
This commit is contained in:
NIIBE Yutaka 2022-11-22 15:09:52 +09:00
parent 43722438a8
commit 1c88104a3f
No known key found for this signature in database
GPG Key ID: 640114AF89DE6054
1 changed files with 3 additions and 1 deletions

View File

@ -716,7 +716,9 @@
(define (open-log-file)
(unless log-file-name
(set! log-file-name (string-append (basename name) ".log")))
(set! log-file-name (path-join
(getenv "objdir")
(string-append name ".log"))))
(catch '() (unlink log-file-name))
(open log-file-name (logior O_RDWR O_BINARY O_CREAT) #o600))