/usr/lib/sbcl/sb-cover/test-data-3.lisp is in sbcl 2:1.0.55.0-1.
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 | (declaim (optimize sb-c::store-coverage-data))
(defun test-1 ()
(print '((1 3 1))))
(defun test-2 ()
(assert (equal (test-1)
(list (list 1 3 1)))))
|