This file is indexed.

/usr/share/doc/cl-asdf/examples/test8.script is in cl-asdf 2:2.20-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
 9
10
11
12
13
14
15
16
17
18
19
20
;;; -*- Lisp -*-

;;; make sure we get a missing-component error

(load "script-support.lisp")
(load-asdf)
(in-package #:common-lisp-user)

(quit-on-error
 (setf asdf:*central-registry* '(*default-pathname-defaults*))
 (handler-case
     (asdf:oos 'asdf:load-op 'system-does-not-exist)
   (asdf:missing-component-of-version (c)
     (declare (ignore c))
     (error "Should not have gotten 'missing-component-of-version, dang"))
   (asdf:missing-component (c)
     (format t "got missing-component as expected: - ~%~A~%" c))
   (:no-error (c)
     (declare (ignore c))
     (error "should have failed, oops"))))