/usr/share/sbcl-source/contrib/sb-introspect/load-test.lisp is in sbcl-source 2:1.0.57.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ;;;
;;; The order of the forms must not change, as the order is checked in
;;; `test-driver.lisp'. Thus do not alter this file unless you edit
;;; test-driver.lisp to match.
;;;
(declaim (optimize (debug 3)))
(in-package :cl-user)
(eval-when (:compile-toplevel)
(error "load-test.lisp needs to be loaded as source"))
(defun loaded-as-source-fun ()
t)
|