mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-10 13:04:23 +01:00
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:
parent
b94fe0e007
commit
44cbe6fbc0
@ -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))
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user