#!/bin/sh
. ./subr.sh
use_test_subdirectory
tmpcore="init-test.core"
run_sbcl <<EOF
(require :sb-introspect)
(defun custom-userinit-pathname ()
"$SBCL_PWD/custom-userinit.lisp")
(defun custom-sysinit-pathname ()
"$SBCL_PWD/custom-sysinit.lisp")
(setf sb-impl::*userinit-pathname-function* 'custom-userinit-pathname
sb-impl::*sysinit-pathname-function* 'custom-sysinit-pathname)
(save-lisp-and-die "$tmpcore")
EOF
if [ $? -ne 0 ]; then
echo "failure saving core"
exit 1
fi
run_sbcl_with_core "$tmpcore" --noinform --disable-debugger \
--eval "(setf sb-ext:*evaluator-mode* :${TEST_SBCL_EVALUATOR_MODE:-compile})" \
<<EOF
(assert (string= (custom-sysinit-pathname)
(namestring
(sb-introspect:definition-source-pathname
(car (sb-introspect:find-definition-sources-by-name
'sysinit-21 :function))))))
(userinit-quit (sysinit-21))
EOF
check_status_maybe_lose "userinit and sysinit loading" $? 21 "(loading worked)"
exit $EXIT_TEST_WIN