mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 13:49:17 +02:00
test: Do not create file under /tmp in show-test
Do not create test file under /tmp as it might break concurrent builds. Creating file on the current directory should suffice.
This commit is contained in:
parent
656efad587
commit
583c45a6c1
1 changed files with 1 additions and 1 deletions
|
@ -730,7 +730,7 @@ def | 6
|
|||
|
||||
;; from-file
|
||||
;; for reference, filesystem-test relies on creating files under /tmp
|
||||
(let* ((tmp-file "/tmp/chibi-show-test-0123456789")
|
||||
(let* ((tmp-file "chibi-show-test-0123456789")
|
||||
(content-string "first line\nsecond line\nthird line"))
|
||||
(with-output-to-file tmp-file (lambda () (write-string content-string)))
|
||||
(test (string-append content-string "\n")
|
||||
|
|
Loading…
Add table
Reference in a new issue