From 583c45a6c100167e7c3493b90da37b3f95d2ef8e Mon Sep 17 00:00:00 2001 From: okuoku Date: Wed, 4 Apr 2018 05:27:03 +0900 Subject: [PATCH] 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. --- lib/chibi/show-test.sld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/chibi/show-test.sld b/lib/chibi/show-test.sld index b9e0977c..a4a98d4d 100644 --- a/lib/chibi/show-test.sld +++ b/lib/chibi/show-test.sld @@ -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")