mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02: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
43722438a8
commit
1c88104a3f
1 changed files with 3 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue