From d3de3e1de2d1f216a1df68ac53684fdff212f63b Mon Sep 17 00:00:00 2001 From: Philipp Marek Date: Mon, 18 Mar 2019 09:57:08 +0100 Subject: [PATCH] Ensure the log-directory is available, and don't bother with init files. --- tests/parallel-exec.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/parallel-exec.sh b/tests/parallel-exec.sh index 7a1821c8e..0311dc26c 100755 --- a/tests/parallel-exec.sh +++ b/tests/parallel-exec.sh @@ -1,8 +1,8 @@ #!/bin/sh -mkdir -p /var/tmp/junk +mkdir -p /var/tmp/junk /var/tmp/sbcl-test-logs TEST_DIRECTORY=/var/tmp/junk SBCL_HOME=../obj/sbcl-home exec ../src/runtime/sbcl \ - --noinform --core ../output/sbcl.core --noprint << EOF + --noinform --core ../output/sbcl.core --no-userinit --no-sysinit --noprint --disable-debugger << EOF (require :sb-posix) (let ((*evaluator-mode* :compile)) (with-compilation-unit () (load"run-tests")))