Ensure the log-directory is available, and don't bother with init files.

This commit is contained in:
Philipp Marek 2019-03-18 09:57:08 +01:00 committed by Douglas Katzman
parent 7fdc28bb70
commit d3de3e1de2

View file

@ -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")))